From 7237d506f5bd3d930e58dbca20ed755283cee122 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov <borisk@apache.org> Date: Tue, 23 Sep 2008 10:16:06 +0000 Subject: [PATCH] Suppress warning in g++-4.3 (cosmetic change). git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@698118 13f79535-47bb-0310-9956-ffa450edef68 --- src/xercesc/internal/XMLReader.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xercesc/internal/XMLReader.hpp b/src/xercesc/internal/XMLReader.hpp index d857bec58..3a17ab2a2 100644 --- a/src/xercesc/internal/XMLReader.hpp +++ b/src/xercesc/internal/XMLReader.hpp @@ -628,7 +628,7 @@ inline void XMLReader::movePlainContentChars(XMLBuffer &dest) 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) { -- GitLab