You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/10/30 21:56:54 UTC

svn commit: r590463 - /incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp

Author: sebor
Date: Tue Oct 30 13:56:53 2007
New Revision: 590463

URL: http://svn.apache.org/viewvc?rev=590463&view=rev
Log:
2007-10-30  Martin Sebor  <se...@roguewave.com>

	* CTYPE_BITS.cpp (main): Removed a stray '=' from test output.

Modified:
    incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp

Modified: incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp?rev=590463&r1=590462&r2=590463&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/etc/config/src/CTYPE_BITS.cpp Tue Oct 30 13:56:53 2007
@@ -215,7 +215,7 @@
         if (-1 != bits [i].val) {
             used |= bits [i].val;
 
-            printf ("#define _RWSTD_CTYPE_%s = %#010x"
+            printf ("#define _RWSTD_CTYPE_%s %#010x"
                     "   /* libc value */\n",
                     bits [i].name, bits [i].val);
         }
@@ -228,7 +228,7 @@
 
                     used |= 1 << i;
 
-                    printf ("#define _RWSTD_CTYPE_%s = %#010x"
+                    printf ("#define _RWSTD_CTYPE_%s %#010x"
                             "   /* computed */\n",
                             bits [j].name, 1 << i);