[PATCH] D144285: [Clang] Implement CWG2518 - static_assert(false)
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 17 12:01:37 PST 2023
erichkeane added inline comments.
================
Comment at: clang/lib/Sema/SemaDeclCXX.cpp:16806
+ bool InTemplateDefinition =
+ getLangOpts().CPlusPlus && CurContext->isDependentContext();
+
----------------
cor3ntin wrote:
> erichkeane wrote:
> > CplusPlus check is now not really beneficial? I'm not sure how much it matters now though that these are both just bit-loads.
> isDependentContext still does a bunch of work, recursively. I think we should keep it!
Ah, Oh! You're right! It is the Expr class where this is free/just checking a bit. Disregard.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144285/new/
https://reviews.llvm.org/D144285
More information about the cfe-commits
mailing list