[PATCH] D52957: [analyzer] Teach CallEvent about C++17 aligned new.
Umann Kristóf via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 6 04:51:22 PDT 2018
Szelethus added inline comments.
================
Comment at: include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h:929
+ // number of arguments is always the same as the number of parameters.
+ unsigned getNumImplicitArgs() const {
+ return getOriginExpr()->passAlignment() ? 2 : 1;
----------------
Can you include doxygen comments too, or make these doxygen comments?
Repository:
rC Clang
https://reviews.llvm.org/D52957
More information about the cfe-commits
mailing list