r251701 - clang/module.modulemap: Exclude Frontend/PCHContainerOperations.h in Clang_Frontend.

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 30 08:14:55 PDT 2015


Author: chapuni
Date: Fri Oct 30 10:14:55 2015
New Revision: 251701

URL: http://llvm.org/viewvc/llvm-project?rev=251701&view=rev
Log:
clang/module.modulemap: Exclude Frontend/PCHContainerOperations.h in Clang_Frontend.

FIXME: It should be dissolved to interface and impl.

Modified:
    cfe/trunk/include/clang/module.modulemap

Modified: cfe/trunk/include/clang/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/module.modulemap?rev=251701&r1=251700&r2=251701&view=diff
==============================================================================
--- cfe/trunk/include/clang/module.modulemap (original)
+++ cfe/trunk/include/clang/module.modulemap Fri Oct 30 10:14:55 2015
@@ -90,6 +90,9 @@ module Clang_Frontend {
   textual header "Frontend/LangStandards.def"
 
   module * { export * }
+
+  // FIXME: This violates layers.
+  exclude header "Frontend/PCHContainerOperations.h"
 }
 
 module Clang_FrontendTool { requires cplusplus umbrella "FrontendTool" module * { export * } }




More information about the cfe-commits mailing list