diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-11-10 22:22:50 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-11-10 22:22:50 +0000 |
commit | 69a2c268dbc2844bbdecfbbbb82602e6bb4bd1df (patch) | |
tree | 1ae7ec566b68a4b5b86a3a7cd5f3b621e03647c2 | |
parent | dfcaf060d57fdb46e596e93c91dd86ed53a31ba9 (diff) |
Shuffle order of warning declarations (alphabetize).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86733 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticGroups.td | 2 |
1 files changed, 1 insertions, 1 deletions
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">; |