Add modules for any/optional/variant

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@288730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-12-05 23:33:19 +00:00
parent bca6de0e4e
commit 045b27e848

View File

@@ -205,6 +205,10 @@ module std [system] {
export initializer_list export initializer_list
export * export *
} }
module any {
header "any"
export *
}
module array { module array {
header "array" header "array"
export initializer_list export initializer_list
@@ -331,6 +335,10 @@ module std [system] {
header "numeric" header "numeric"
export * export *
} }
module optional {
header "optional"
export *
}
module ostream { module ostream {
header "ostream" header "ostream"
// FIXME: should re-export ios, streambuf? // FIXME: should re-export ios, streambuf?
@@ -435,6 +443,10 @@ module std [system] {
export initializer_list export initializer_list
export * export *
} }
module variant {
header "variant"
export *
}
module vector { module vector {
header "vector" header "vector"
export initializer_list export initializer_list