Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Only relatively trivial comments; please feel free to commit once they're addressed.
clang/include/clang/Sema/Sema.h | ||
---|---|---|
4382–4394 | Generally we put the parameters to the ActOn* functions in syntactic order, so LParenLoc should precede InitStmt in each of the above functions. | |
clang/lib/Sema/SemaDeclCXX.cpp | ||
8028–8029 | This code is generally using Loc as the location of all of its components. Perhaps we should do the same for the location of the parentheses? | |
8180 | Likewise here. |
Generally we put the parameters to the ActOn* functions in syntactic order, so LParenLoc should precede InitStmt in each of the above functions.