[clang] Try to fix builders

Try to fix these errors:

SemaDeclCXX.cpp:16666:19: error: declaration of ‘const clang::Expr* clang::Sema::DiagnoseStaticAssertDetails(const clang::Expr*)::<unnamed struct>::Expr’ changes meaning of ‘Expr’ [-fpermissive]
16666 |       const Expr *Expr;
      |                   ^~~~
This commit is contained in:
Timm Bäder 2022-08-11 09:06:41 +02:00
parent c615411d82
commit ebe0674acb
1 changed files with 1 additions and 1 deletions

View File

@ -16663,7 +16663,7 @@ void Sema::DiagnoseStaticAssertDetails(const Expr *E) {
return;
struct {
const Expr *Expr;
const clang::Expr *Expr;
Expr::EvalResult Result;
SmallString<12> ValueString;
bool Print;