r290221 - Fix build breakage in r290219. Notes should not be in diagnostic groups.
Graydon Hoare via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 20 16:48:14 PST 2016
Author: graydon
Date: Tue Dec 20 18:48:14 2016
New Revision: 290221
URL: http://llvm.org/viewvc/llvm-project?rev=290221&view=rev
Log:
Fix build breakage in r290219. Notes should not be in diagnostic groups.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td?rev=290221&r1=290220&r2=290221&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td Tue Dec 20 18:48:14 2016
@@ -646,8 +646,7 @@ def warn_mmap_mismatched_top_level_priva
"top-level module '%0' in private module map, expected a submodule of '%1'">,
InGroup<PrivateModule>;
def note_mmap_rename_top_level_private_as_submodule : Note<
- "make '%0' a submodule of '%1' to ensure it can be found by name">,
- InGroup<PrivateModule>;
+ "make '%0' a submodule of '%1' to ensure it can be found by name">;
def warn_auto_module_import : Warning<
"treating #%select{include|import|include_next|__include_macros}0 as an "
More information about the cfe-commits
mailing list