mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 00:11:08 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
Origin commit data
------------------
Commit: bb347b3a44
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-04-28 (Sat, 28 Apr 2012)
This commit is contained in:
@@ -48,10 +48,10 @@ Helpbox::Helpbox()
|
||||
Helpbox::~Helpbox()
|
||||
{
|
||||
for (ContentLines::iterator it = m_lines.begin();
|
||||
it != m_lines.end(); it++)
|
||||
it != m_lines.end(); ++it)
|
||||
{
|
||||
for (std::vector<Drawable*>::iterator it2 = it->begin();
|
||||
it2 != it->end(); it2++)
|
||||
it2 != it->end(); ++it2)
|
||||
{
|
||||
delete *it2;
|
||||
}
|
||||
|
Reference in New Issue
Block a user