kadircet added inline comments.

================
Comment at: clang/lib/AST/StmtPrinter.cpp:2011
+      Expr *Init = D->getInit();
+      if (D->getInitStyle() == VarDecl::CallInit && !isa<ParenListExpr>(Init))
+        OS << "(";
----------------
what about having a `Pre` and `Post` print blocks, set to `"(" and ")"` or `" = 
` and ""` respectively?

that way we could get rid of the second if block below.


also i don't follow why blacklisting for parenlistexpr is needed here (i can 
see that it will end up printing double parens, but so is `ParenExpr`s, and I 
think both of them shouldn't be showing up as initializer exprs of captured 
variables), could you elaborate with a comment and a test case?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D83855



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to