From: Sean Hunt Date: Mon, 6 Jun 2011 20:30:15 +0000 (+0000) Subject: Don't put a note in the DiagGroup X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f4afa55bb1c580739a98bf8051d6400f4fc5738;p=clang Don't put a note in the DiagGroup git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132687 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 38c011dcc5..54a094f68d 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -1420,8 +1420,7 @@ def warn_default_arg_makes_ctor_special : Warning< def note_previous_declaration_special : Note< // The ERRORs are in hopes that if they occur, they'll get reported. "previous declaration was %select{*ERROR*|a copy constructor|a move " - "constructor|*ERROR*|*ERROR*|*ERROR*|not a special member function}0">, - InGroup; + "constructor|*ERROR*|*ERROR*|*ERROR*|not a special member function}0">; def err_use_of_default_argument_to_function_declared_later : Error< "use of default argument to function %0 that is declared later in class %1">;