Allow libc++ to use modules in C++03.

Libc++ internal uses <atomic> in C++03 code but the module map forbids its use.
This causes the libc++ 'std' module to fail to build in C++03.

This patch removes the requirement to fix this issue.

llvm-svn: 287693
This commit is contained in:
Eric Fiselier 2016-11-22 20:15:39 +00:00
parent 8a44c94b8a
commit 198955536e
1 changed files with 0 additions and 1 deletions

View File

@ -213,7 +213,6 @@ module std [system] {
module atomic { module atomic {
header "atomic" header "atomic"
export * export *
requires cplusplus11
} }
module bitset { module bitset {
header "bitset" header "bitset"