[PATCH] D56022: [AST] Store the arguments of CXXConstructExpr in a trailing array
Bruno Ricci via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 21 13:19:22 PST 2018
riccibruno marked 2 inline comments as done.
riccibruno added inline comments.
================
Comment at: include/clang/AST/ExprCXX.h:1295
+ /// A pointer to the constructor which will be ultimately called.
+ CXXConstructorDecl *Constructor;
+
----------------
Removed the default member initializer as it is initialized unconditionally
in the constructor.
================
Comment at: include/clang/AST/ExprCXX.h:1613
+
+ TypeSourceInfo *TSI = nullptr;
+
----------------
Changed the name from `Type` since `Type` was imho an unfortunate choice.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56022/new/
https://reviews.llvm.org/D56022
More information about the cfe-commits
mailing list