r193921 - Remove a stray tab character from warn_objc_root_class_missing

David Majnemer david.majnemer at gmail.com
Sat Nov 2 04:21:23 PDT 2013


Author: majnemer
Date: Sat Nov  2 06:21:23 2013
New Revision: 193921

URL: http://llvm.org/viewvc/llvm-project?rev=193921&view=rev
Log:
Remove a stray tab character from warn_objc_root_class_missing

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=193921&r1=193920&r2=193921&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Sat Nov  2 06:21:23 2013
@@ -531,7 +531,7 @@ def note_suppressed_class_declare : Note
 def err_objc_root_class_subclass : Error<
   "objc_root_class attribute may only be specified on a root class declaration">;
 def warn_objc_root_class_missing : Warning<
-	"class %0 defined without specifying a base class">,
+  "class %0 defined without specifying a base class">,
   InGroup<ObjCRootClass>;
 def note_objc_needs_superclass : Note<
   "add a super class to fix this problem">;





More information about the cfe-commits mailing list