From 4d22b5a9809505793a1b60a14909f75f97c569a5 Mon Sep 17 00:00:00 2001
From: Graydon Hoare <ghoare@apple.com>
Date: Wed, 21 Dec 2016 00:48:14 +0000
Subject: [PATCH] Fix build breakage in r290219. Notes should not be in
 diagnostic groups.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@290221 91177308-0d34-0410-b5e6-96231b3b80d8
---
 include/clang/Basic/DiagnosticLexKinds.td | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td
index 3b602a16c83..7f7022b49e3 100644
--- a/include/clang/Basic/DiagnosticLexKinds.td
+++ b/include/clang/Basic/DiagnosticLexKinds.td
@@ -646,8 +646,7 @@ def warn_mmap_mismatched_top_level_private : Warning<
   "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 "
-- 
GitLab