diff options
Diffstat (limited to 'libcxx/include/module.modulemap')
-rw-r--r-- | libcxx/include/module.modulemap | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index 31d39ddf7c8a..b8d2a6669aac 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -231,6 +231,11 @@ module std [system] { header "atomic" export * } + module barrier { + requires cplusplus14 + header "barrier" + export * + } module bit { header "bit" export * @@ -262,6 +267,10 @@ module std [system] { header "complex" export * } + module concepts { + header "concepts" + export * + } module condition_variable { header "condition_variable" export * @@ -334,6 +343,11 @@ module std [system] { header "iterator" export * } + module latch { + requires cplusplus14 + header "latch" + export * + } module limits { header "limits" export * @@ -364,6 +378,10 @@ module std [system] { header "new" export * } + module numbers { + header "numbers" + export * + } module numeric { header "numeric" export * @@ -400,6 +418,11 @@ module std [system] { header "scoped_allocator" export * } + module semaphore { + requires cplusplus14 + header "semaphore" + export * + } module set { header "set" export initializer_list |