From c8566d0238567b2311e5967ceb51630051fa389f Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 30 Oct 2015 15:14:55 +0000 Subject: [PATCH] clang/module.modulemap: Exclude Frontend/PCHContainerOperations.h in Clang_Frontend. FIXME: It should be dissolved to interface and impl. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@251701 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/module.modulemap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/clang/module.modulemap b/include/clang/module.modulemap index 1c874d2dd8..28b6d1652c 100644 --- a/include/clang/module.modulemap +++ b/include/clang/module.modulemap @@ -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 * } } -- 2.40.0