From 4128a4a6c219a6c83483d4538a59ed8f523868a5 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 12 May 2022 14:43:20 -0400 Subject: [PATCH] [libc++] Mark as requiring C++23 Otherwise, we might get errors with modules in pre-C++23 when mixing and . This should fix breakage on Green Dragon. --- libcxx/include/module.modulemap | 1 + 1 file changed, 1 insertion(+) diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index 6cf0467..7ae3d10 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -51,6 +51,7 @@ module std [system] { export * } module stdatomic_h { + requires cplusplus23 header "stdatomic.h" export * } -- 2.7.4