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

Benjamin Kramer benny.kra at googlemail.com
Sun Sep 25 19:14:16 PDT 2011


Author: d0k
Date: Sun Sep 25 21:14:16 2011
New Revision: 140512

URL: http://llvm.org/viewvc/llvm-project?rev=140512&view=rev
Log:
Add missing spaces in diagnostic messages.

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=140512&r1=140511&r2=140512&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Sun Sep 25 21:14:16 2011
@@ -517,7 +517,7 @@
   "illegal redeclaration of property in continuation class %0"
   " (attribute must be 'readwrite', while its primary must be 'readonly')">;
 def error_type_mismatch_continuation_class : Error<
-  "type of property %0 in continuation class does not match"
+  "type of property %0 in continuation class does not match "
   "property type in primary class">;
 def err_use_continuation_class_redeclaration_readwrite : Error<
   "illegal redeclaration of 'readwrite' property in continuation class %0"
@@ -555,8 +555,7 @@
   "performSelector may cause a leak because its selector is unknown">,
   InGroup<DiagGroup<"arc-performSelector-leaks">>;
 def err_gc_weak_property_strong_type : Error<
-  "weak attribute declared on a __strong type property"
-  "in GC mode">;
+  "weak attribute declared on a __strong type property in GC mode">;
 
 def error_synthesized_ivar_yet_not_supported : Error<
   "instance variable synthesis not yet supported"





More information about the cfe-commits mailing list