diff options
author | Eric Fiselier <eric@efcs.ca> | 2018-04-04 04:21:54 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2018-04-04 04:21:54 +0000 |
commit | acc32abb117809fecd82074219f97a1258f771e0 (patch) | |
tree | 65040d00fcdeec6a9606c808e1e5feea2477320b /libcxx/include/module.modulemap | |
parent | fcc1e6d978d4333426aa710af3d00c1db6a705da (diff) | |
download | bcm5719-llvm-acc32abb117809fecd82074219f97a1258f771e0.tar.gz bcm5719-llvm-acc32abb117809fecd82074219f97a1258f771e0.zip |
Touch up tests for new <version> header; fix module.modulemap.
This patch does some housekeeping for the new <version> header.
It adds it to the module.modulemap, and the double_include.sh.cpp test.
Additionally it corrects the // UNSUPPORTED options for the libc++
specific test. The header needs to compile under C++03 to support
modules, and it should compile under all available compilers.
llvm-svn: 329144
Diffstat (limited to 'libcxx/include/module.modulemap')
-rw-r--r-- | libcxx/include/module.modulemap | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index 076ef2334b8..cf92fa0d850 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -470,6 +470,10 @@ module std [system] { export initializer_list export * } + module version { + header "version" + export * + } // FIXME: These should be private. module __bit_reference { header "__bit_reference" export * } |