You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by bo...@apache.org on 2008/09/23 12:16:07 UTC

svn commit: r698118 - /xerces/c/trunk/src/xercesc/internal/XMLReader.hpp

Author: borisk
Date: Tue Sep 23 03:16:06 2008
New Revision: 698118

URL: http://svn.apache.org/viewvc?rev=698118&view=rev
Log:
Suppress warning in g++-4.3 (cosmetic change).

Modified:
    xerces/c/trunk/src/xercesc/internal/XMLReader.hpp

Modified: xerces/c/trunk/src/xercesc/internal/XMLReader.hpp
URL: http://svn.apache.org/viewvc/xerces/c/trunk/src/xercesc/internal/XMLReader.hpp?rev=698118&r1=698117&r2=698118&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/internal/XMLReader.hpp (original)
+++ xerces/c/trunk/src/xercesc/internal/XMLReader.hpp Tue Sep 23 03:16:06 2008
@@ -628,7 +628,7 @@
     const XMLSize_t chunkSize = fCharsAvail - fCharIndex;
     const XMLCh* cursor = &fCharBuf[fCharIndex];
     XMLSize_t count=0;
-    for(;count<chunkSize && (fgCharCharsTable[*cursor++] & gPlainContentCharMask) != 0;++count);    // yes, it's an empty loop
+    for(;count<chunkSize && (fgCharCharsTable[*cursor++] & gPlainContentCharMask) != 0;++count) /*noop*/ ;
 
     if (count!=0)
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org