r308593 - clang/module.modulemap: Clang_Diagnostics: Activate "Sema/SemaDiagnostic.h".
NAKAMURA Takumi via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 20 00:51:47 PDT 2017
Author: chapuni
Date: Thu Jul 20 00:51:47 2017
New Revision: 308593
URL: http://llvm.org/viewvc/llvm-project?rev=308593&view=rev
Log:
clang/module.modulemap: Clang_Diagnostics: Activate "Sema/SemaDiagnostic.h".
It seems issues were resolved.
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=308593&r1=308592&r2=308593&view=diff
==============================================================================
--- cfe/trunk/include/clang/module.modulemap (original)
+++ cfe/trunk/include/clang/module.modulemap Thu Jul 20 00:51:47 2017
@@ -69,8 +69,7 @@ module Clang_Diagnostics {
module Frontend { header "Frontend/FrontendDiagnostic.h" export * }
module Lex { header "Lex/LexDiagnostic.h" export * }
module Parse { header "Parse/ParseDiagnostic.h" export * }
- // FIXME: This breaks the build of Clang_Sema, for unknown reasons.
- //module Sema { header "Sema/SemaDiagnostic.h" export * }
+ module Sema { header "Sema/SemaDiagnostic.h" export * }
module Serialization { header "Serialization/SerializationDiagnostic.h" export * }
}
More information about the cfe-commits
mailing list