[PATCH] D105759: Implement P2361 Unevaluated string literals
Corentin Jabot via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 28 07:02:10 PDT 2023
cor3ntin added inline comments.
================
Comment at: clang/lib/Sema/SemaDeclAttr.cpp:878
- if (!isIntOrBool(AL.getArgAsExpr(0))) {
+ Expr *First = AL.getArgAsExpr(0);
+ if (!isIntOrBool(First)) {
----------------
erichkeane wrote:
> Unrelated change here? What is this for?
Some test i failed to fully revert. good catch!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105759/new/
https://reviews.llvm.org/D105759
More information about the cfe-commits
mailing list