[clang] [RFC][C++20][Modules] Relax ODR check in unnamed modules (PR #111160)
Chuanqi Xu via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 8 18:26:01 PDT 2024
================
@@ -2527,7 +2527,7 @@ class BitsUnpacker {
inline bool shouldSkipCheckingODR(const Decl *D) {
return D->getASTContext().getLangOpts().SkipODRCheckInGMF &&
- D->isFromGlobalModule();
+ (D->isFromGlobalModule() || !D->isInNamedModule());
----------------
ChuanqiXu9 wrote:
And it looks like this is not updated.
https://github.com/llvm/llvm-project/pull/111160
More information about the cfe-commits
mailing list