mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 08:21:12 +02:00
(performance) Prefer prefix ++/-- operators for non-primitive types
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user