[libcxx] r288730 - Add modules for any/optional/variant

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Mon Dec 5 15:33:19 PST 2016


Author: ericwf
Date: Mon Dec  5 17:33:19 2016
New Revision: 288730

URL: http://llvm.org/viewvc/llvm-project?rev=288730&view=rev
Log:
Add modules for any/optional/variant

Modified:
    libcxx/trunk/include/module.modulemap

Modified: libcxx/trunk/include/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/module.modulemap?rev=288730&r1=288729&r2=288730&view=diff
==============================================================================
--- libcxx/trunk/include/module.modulemap (original)
+++ libcxx/trunk/include/module.modulemap Mon Dec  5 17:33:19 2016
@@ -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




More information about the cfe-commits mailing list