Use const where const is enough

This commit is contained in:
Dmitry-Me 2016-09-02 16:53:32 +03:00
parent 4fe8c102da
commit 2449582eaf
1 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ void StrPair::CollapseWhitespace()
_start = XMLUtil::SkipWhiteSpace( _start );
if ( *_start ) {
char* p = _start; // the read pointer
const char* p = _start; // the read pointer
char* q = _start; // the write pointer
while( *p ) {
@ -267,7 +267,7 @@ const char* StrPair::GetStr()
_flags ^= NEEDS_FLUSH;
if ( _flags ) {
char* p = _start; // the read pointer
const char* p = _start; // the read pointer
char* q = _start; // the write pointer
while( p < _end ) {