1
0

Merge pull request #1809 from flx5/master

Performance improvements for #1807
This commit is contained in:
NiLSPACE 2015-03-13 08:55:48 +01:00
commit 57d2a09c8c

View File

@ -151,10 +151,10 @@ AStringVector StringSplitWithQuotes(const AString & str, const AString & delim)
while ((cutAt = str.find_first_of(delim, Prev)) != str.npos)
{
AString current = str.substr(Prev, cutAt - Prev);
if ((current.at(0) == '"') || (current.at(0) == '\''))
if ((current.front() == '"') || (current.front() == '\''))
{
Prev += 1;
cutAtQuote = str.find_first_of(current.at(0), Prev);
cutAtQuote = str.find_first_of(current.front(), Prev);
if (cutAtQuote != str.npos)
{
current = str.substr(Prev, cutAtQuote - Prev);
@ -162,7 +162,7 @@ AStringVector StringSplitWithQuotes(const AString & str, const AString & delim)
}
}
results.push_back(current);
results.push_back(std::move(current));
Prev = cutAt + 1;
}