Optimize array access

This commit is contained in:
momo5502
2016-08-14 16:05:57 +02:00
parent 7def8890e9
commit 9a3b5d48e4
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ namespace Utils
std::string _entry = std::move(token);
// Remove trailing 0x0 bytes
while (_entry.size() && !_entry[_entry.size() - 1])
while (_entry.size() && !_entry.back())
{
_entry = _entry.substr(0, _entry.size() - 1);
}