[cfe-commits] r148430 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Fariborz Jahanian fjahanian at apple.com
Wed Jan 18 14:18:30 PST 2012


Author: fjahanian
Date: Wed Jan 18 16:18:30 2012
New Revision: 148430

URL: http://llvm.org/viewvc/llvm-project?rev=148430&view=rev
Log:
Use  -Wdeprecated-objc-isa-usage for option to issue
deprecated usage of 'isa'. // rdar://8290002

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

Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=148430&r1=148429&r2=148430&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Wed Jan 18 16:18:30 2012
@@ -514,7 +514,7 @@
 def warn_objc_isa_use : Warning<
   "direct access to objective-c's isa is deprecated "
   "in favor of object_setClass() and object_getClass()">,
-  InGroup<DiagGroup<"deprecated-objective-c-isa-usage">>;
+  InGroup<DiagGroup<"deprecated-objc-isa-usage">>;
 def warn_objc_property_default_assign_on_object : Warning<
   "default property attribute 'assign' not appropriate for non-gc object">;
 def warn_property_attr_mismatch : Warning<





More information about the cfe-commits mailing list