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

@@ -1270,7 +1270,7 @@ std::string XMLReaderData::extract(int Index, int Endex) const {
if (Start > End) End = Start;
if (End >= myBufferSize) End = myBufferSize - 1;

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

//// Utilities /////////////////////////////////////////////////////////////////
@@ -1292,4 +1292,4 @@ void XMLeratorSetTrueOnComplete::operator()(
} // true.
}

}
} // End of CodeDweller namespace.

Loading…
Cancel
Save