[all-commits] [llvm/llvm-project] 7309e8: Do not use the same identifier for a data member a...
Aaron Ballman via All-commits
all-commits at lists.llvm.org
Thu Aug 11 04:37:28 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 7309e8cfbe59844b4e0128c3f48eb1a68d8bad68
https://github.com/llvm/llvm-project/commit/7309e8cfbe59844b4e0128c3f48eb1a68d8bad68
Author: Aaron Ballman <aaron at aaronballman.com>
Date: 2022-08-11 (Thu, 11 Aug 2022)
Changed paths:
M clang/lib/Sema/SemaDeclCXX.cpp
Log Message:
-----------
Do not use the same identifier for a data member as a type; NFC
This should help address a build failure found after
09117b21890c652994f7ada0229d309b35b44259
../tools/clang/lib/Sema/SemaDeclCXX.cpp: In member function void clang::Sema::DiagnoseStaticAssertDetails(const clang::Expr*):
../tools/clang/lib/Sema/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;
| ^~~~
In file included from ../tools/clang/include/clang/AST/DeclCXX.h:22,
from ../tools/clang/include/clang/AST/ASTLambda.h:18,
from ../tools/clang/lib/Sema/SemaDeclCXX.cpp:15:
../tools/clang/include/clang/AST/Expr.h:109:7: note: Expr declared here as class clang::Expr
109 | class Expr : public ValueStmt {
| ^~~~
More information about the All-commits
mailing list