mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
This commit is contained in:
@@ -163,7 +163,7 @@ void CBookmarkManager::writeBookmarkFile() {
|
||||
|
||||
printf("CBookmarkManager: Writing bookmark file\n");
|
||||
|
||||
for (std::vector<CBookmark>::const_iterator it = bookmarks.begin(); it != bookmarks.end(); it++)
|
||||
for (std::vector<CBookmark>::const_iterator it = bookmarks.begin(); it != bookmarks.end(); ++it)
|
||||
{
|
||||
std::string tmp = bookmarkstring;
|
||||
tmp += "name";
|
||||
|
Reference in New Issue
Block a user