From: Ted Kremenek Date: Tue, 10 Nov 2009 22:22:50 +0000 (+0000) Subject: Shuffle order of warning declarations (alphabetize). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69a2c268dbc2844bbdecfbbbb82602e6bb4bd1df;p=clang Shuffle order of warning declarations (alphabetize). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86733 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td index ae3f0ef7ec..b8cca04f81 100644 --- a/include/clang/Basic/DiagnosticGroups.td +++ b/include/clang/Basic/DiagnosticGroups.td @@ -68,8 +68,8 @@ def PointerArith : DiagGroup<"pointer-arith">; def : DiagGroup<"pointer-to-int-cast">; def : DiagGroup<"redundant-decls">; def ReturnType : DiagGroup<"return-type">; -def : DiagGroup<"sequence-point">; def SemiBeforeMethodBody : DiagGroup<"semicolon-before-method-body">; +def : DiagGroup<"sequence-point">; def : DiagGroup<"shadow">; def : DiagGroup<"shorten-64-to-32">; def SignCompare : DiagGroup<"sign-compare">;