[PATCH] D98433: [C++2b] [P1102] Accept lambdas without parameter list ().

Marek Kurdej via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Mar 11 09:40:48 PST 2021


curdeius added a comment.

Is there something else that I should test?



================
Comment at: clang/lib/Parse/ParseExprCXX.cpp:1447
+    std::vector<DeclaratorChunk::ParamInfo> EmptyParamInfo;
+    ParseLambdaSpecifiers(/*LParenLoc=*/NoLoc, /*RParenLoc=*/NoLoc,
+                          EmptyParamInfo, /*EllipsisLoc=*/NoLoc);
----------------
I'm not sure what I should do with `LParenLoc` and `RParenLoc`. Any idea?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98433/new/

https://reviews.llvm.org/D98433



More information about the cfe-commits mailing list