JonChesterfield added inline comments.

================
Comment at: clang/lib/Sema/SemaExprCXX.cpp:2137
     //
     // Let's see if this is a constant < 0. If so, we reject it out of hand,
     // per CWG1464. Otherwise, if it's not a constant, we must have an
----------------
Shame about the whitespace noise. getIntegerConstantExpr guards the block and 
is dominated by isValueDependent.


================
Comment at: clang/lib/Sema/SemaTemplateDeduction.cpp:2171
 
               Expr *ArgExpr = (ArgDepMatrix->*GetArgDimensionExpr)();
+              if (Optional<llvm::APSInt> ArgConst =
----------------
this parses as `!ArgExpr->isValueDependent() && 
ArgExpr->getIntegerConstantExpr(S.Context) && ...`


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D112159

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

Reply via email to