[libcxx] r288789 - Revert r288787: Add missing stdbool.h module.

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 6 01:48:32 PST 2016


Author: ericwf
Date: Tue Dec  6 03:48:32 2016
New Revision: 288789

URL: http://llvm.org/viewvc/llvm-project?rev=288789&view=rev
Log:
Revert r288787: Add missing stdbool.h module.

Reverting because I didn't properly test this patch. Although it's probably
correct to add a stdbool_h module I thought the change fixed more than it did.
I'll re-commit after more investigation.

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=288789&r1=288788&r2=288789&view=diff
==============================================================================
--- libcxx/trunk/include/module.modulemap (original)
+++ libcxx/trunk/include/module.modulemap Tue Dec  6 03:48:32 2016
@@ -40,10 +40,7 @@ module std [system] {
     // FIXME: <stdalign.h> is missing.
     // <signal.h> provided by C library.
     // <stdarg.h> provided by compiler.
-    module stdbool_h {
-      header "stdbool.h"
-      export *
-    }
+    // <stdbool.h> provided by compiler.
     module stddef_h {
       // <stddef.h>'s __need_* macros require textual inclusion.
       textual header "stddef.h"




More information about the cfe-commits mailing list