mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
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