(performance) Prefer prefix ++/-- operators for non-primitive types

Origin commit data
------------------
Commit: 7db16952f6
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2016-02-16 (Tue, 16 Feb 2016)
This commit is contained in:
Jacek Jendrzej
2016-02-16 13:02:10 +01:00
parent dc832e6eea
commit 192e734f6b
5 changed files with 10 additions and 10 deletions

View File

@@ -322,7 +322,7 @@ void CFileBrowser::ChangeDir(const std::string & filename, int selection)
readDir(newpath, &allfiles);
// filter
CFileList::iterator file = allfiles.begin();
for(; file != allfiles.end() ; file++)
for(; file != allfiles.end() ; ++file)
{
if (Filter != NULL && !file->isDir() && use_filter)
{