Browse Source

Applied cosmetic changes suggested by Pete.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@116 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz 7 years ago
parent
commit
fc29d1ce6a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      XMLReader.cpp

+ 2
- 2
XMLReader.cpp View File

if (Start > End) End = Start; if (Start > End) End = Start;
if (End >= myBufferSize) End = myBufferSize - 1; if (End >= myBufferSize) End = myBufferSize - 1;


return std::string(myDataBuffer, Start, End - Start + 1);
return string(myDataBuffer, Start, End - Start + 1);
} }


//// Utilities ///////////////////////////////////////////////////////////////// //// Utilities /////////////////////////////////////////////////////////////////
} // true. } // true.
} }


}
} // End of CodeDweller namespace.

Loading…
Cancel
Save