You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/06/19 20:26:32 UTC

[lucy-commits] svn commit: r1137403 - in /incubator/lucy/branches/0.1: ./ core/Lucy/Object/Obj.c core/Lucy/Util/Atomic.cfh

Author: marvin
Date: Sun Jun 19 18:26:31 2011
New Revision: 1137403

URL: http://svn.apache.org/viewvc?rev=1137403&view=rev
Log:
LUCY-154 Double-quote #error directives.

Modified:
    incubator/lucy/branches/0.1/   (props changed)
    incubator/lucy/branches/0.1/core/Lucy/Object/Obj.c
    incubator/lucy/branches/0.1/core/Lucy/Util/Atomic.cfh

Propchange: incubator/lucy/branches/0.1/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Jun 19 18:26:31 2011
@@ -1 +1 @@
-/incubator/lucy/trunk:1134011
+/incubator/lucy/trunk:1134011,1134355

Modified: incubator/lucy/branches/0.1/core/Lucy/Object/Obj.c
URL: http://svn.apache.org/viewvc/incubator/lucy/branches/0.1/core/Lucy/Object/Obj.c?rev=1137403&r1=1137402&r2=1137403&view=diff
==============================================================================
--- incubator/lucy/branches/0.1/core/Lucy/Object/Obj.c (original)
+++ incubator/lucy/branches/0.1/core/Lucy/Object/Obj.c Sun Jun 19 18:26:31 2011
@@ -103,7 +103,7 @@ Obj_to_string(Obj *self) {
     return CB_newf("%o@0x%x32%x32", Obj_Get_Class_Name(self), address_hi,
                    address_lo);
 #else
-  #error Unexpected pointer size.
+  #error "Unexpected pointer size."
 #endif
 }
 

Modified: incubator/lucy/branches/0.1/core/Lucy/Util/Atomic.cfh
URL: http://svn.apache.org/viewvc/incubator/lucy/branches/0.1/core/Lucy/Util/Atomic.cfh?rev=1137403&r1=1137402&r2=1137403&view=diff
==============================================================================
--- incubator/lucy/branches/0.1/core/Lucy/Util/Atomic.cfh (original)
+++ incubator/lucy/branches/0.1/core/Lucy/Util/Atomic.cfh Sun Jun 19 18:26:31 2011
@@ -82,7 +82,7 @@ lucy_Atomic_cas_ptr(void *volatile *targ
 /******************** No support for atomics at all. ***********************/
 #else
 
-#error No support for atomic operations.
+#error "No support for atomic operations."
 
 #endif // Big platform if-else chain.