[cfe-commits] r167003 - /cfe/trunk/include/clang/Basic/DiagnosticGroups.td

Ted Kremenek kremenek at apple.com
Mon Oct 29 21:43:58 PDT 2012


Author: kremenek
Date: Mon Oct 29 23:43:57 2012
New Revision: 167003

URL: http://llvm.org/viewvc/llvm-project?rev=167003&view=rev
Log:
Change -Wcompare-distinct-pointer-type to -Wcompare-distinct-pointer-types, as
the warning is about comparing different types (plural).

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticGroups.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticGroups.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticGroups.td?rev=167003&r1=167002&r2=167003&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticGroups.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticGroups.td Mon Oct 29 23:43:57 2012
@@ -209,7 +209,7 @@
                                     [TautologicalOutOfRangeCompare]>;
 def HeaderHygiene : DiagGroup<"header-hygiene">;
 def DuplicateDeclSpecifier : DiagGroup<"duplicate-decl-specifier">;
-def CompareDistinctPointerType : DiagGroup<"compare-distinct-pointer-type">;
+def CompareDistinctPointerType : DiagGroup<"compare-distinct-pointer-types">;
 
 // Preprocessor warnings.
 def : DiagGroup<"builtin-macro-redefined">;





More information about the cfe-commits mailing list