Add support for C language standards (#159)

This commit is contained in:
Lucas Jansen 2023-01-26 11:17:44 +00:00 committed by GitHub
commit 7b25525232
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 147 additions and 11 deletions

View file

@ -27,6 +27,11 @@ TEST_CASE("parse_files")
{
return "null";
}
bool do_use_c() const noexcept override
{
return false;
}
} config;
class null_parser : public parser