This patch adds support for more decl types that need to be processable, as part of clang-ifs hardening.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp | ||
---|---|---|
202 | Not sure if I prefer this or: if (!ND->getIdentifier()) return true; const auto *VD = cast<VarDecl>(ND); if (VD->isTemplated() || VD->getType()->isDependent()) return true; |
Not sure if I prefer this or: