Fixed test cases on LLVM 16

This commit is contained in:
Bartek Kryza
2023-05-03 20:22:48 +02:00
parent 3df81d5878
commit e9a57283fc
5 changed files with 11 additions and 16 deletions

View File

@@ -116,8 +116,8 @@ std::string to_string(const clang::QualType &type, const clang::ASTContext &ctx,
bool try_canonical)
{
clang::PrintingPolicy print_policy(ctx.getLangOpts());
print_policy.SuppressScope = false;
print_policy.PrintCanonicalTypes = false;
print_policy.SuppressScope = 0;
print_policy.PrintCanonicalTypes = 0;
std::string result;