diff options
| author | Eric Fiselier <eric@efcs.ca> | 2016-12-05 23:33:19 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2016-12-05 23:33:19 +0000 |
| commit | 392aa108116d372a24e1206f7c043463cca82ca6 (patch) | |
| tree | 1d6927d7fe7d8ae0acf910649ddd9f17e49cd2ca /libcxx/include/module.modulemap | |
| parent | 882fc5d0a3c68cbe82042b97371a409c6a288b4d (diff) | |
| download | bcm5719-llvm-392aa108116d372a24e1206f7c043463cca82ca6.tar.gz bcm5719-llvm-392aa108116d372a24e1206f7c043463cca82ca6.zip | |
Add modules for any/optional/variant
llvm-svn: 288730
Diffstat (limited to 'libcxx/include/module.modulemap')
| -rw-r--r-- | libcxx/include/module.modulemap | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index b050e5a5974..88e6590e56b 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -205,6 +205,10 @@ module std [system] { export initializer_list export * } + module any { + header "any" + export * + } module array { header "array" export initializer_list @@ -331,6 +335,10 @@ module std [system] { header "numeric" export * } + module optional { + header "optional" + export * + } module ostream { header "ostream" // FIXME: should re-export ios, streambuf? @@ -435,6 +443,10 @@ module std [system] { export initializer_list export * } + module variant { + header "variant" + export * + } module vector { header "vector" export initializer_list |

