mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
This commit is contained in:
@@ -356,7 +356,7 @@ CFrameBuffer::~CFrameBuffer()
|
||||
{
|
||||
std::map<std::string, rawIcon>::iterator it;
|
||||
|
||||
for(it = icon_cache.begin(); it != icon_cache.end(); it++) {
|
||||
for(it = icon_cache.begin(); it != icon_cache.end(); ++it) {
|
||||
/* printf("FB: delete cached icon %s: %x\n", it->first.c_str(), (int) it->second.data); */
|
||||
cs_free_uncached(it->second.data);
|
||||
}
|
||||
|
Reference in New Issue
Block a user