You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by el...@apache.org on 2008/05/23 00:01:07 UTC

svn commit: r659274 - /stdcxx/branches/4.2.x/src/num_put.cpp

Author: elemings
Date: Thu May 22 15:01:06 2008
New Revision: 659274

URL: http://svn.apache.org/viewvc?rev=659274&view=rev
Log:
2008-05-22  Eric Lemings <er...@roguewave.com>

	STDCXX-550
	* src/num_put.cpp (__rw_itoa): Missing closing parethneses in
	previous change.


Modified:
    stdcxx/branches/4.2.x/src/num_put.cpp

Modified: stdcxx/branches/4.2.x/src/num_put.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/src/num_put.cpp?rev=659274&r1=659273&r2=659274&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/src/num_put.cpp (original)
+++ stdcxx/branches/4.2.x/src/num_put.cpp Thu May 22 15:01:06 2008
@@ -467,7 +467,7 @@
         j = 0;
 
     do {
-        const unsigned dig = unsigned (i >> (j * bits)) & basemask);
+        const unsigned dig = unsigned (i >> (j * bits)) & basemask));
 
         _RWSTD_ASSERT (dig <= basemask);