[PATCH] D156237: Complete the implementation of P2361 Unevaluated string literals
Corentin Jabot via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 28 05:18:38 PDT 2023
cor3ntin added inline comments.
================
Comment at: clang/lib/Parse/ParseDecl.cpp:431-436
+ if (Expr.isInvalid()) {
+ SawError = true;
+ break;
+ } else {
+ Exprs.push_back(Expr.get());
+ }
----------------
aaron.ballman wrote:
>
Oups, sorry @Fznamznon, I'll fix that!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D156237/new/
https://reviews.llvm.org/D156237
More information about the cfe-commits
mailing list