mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
This commit is contained in:
@@ -72,7 +72,7 @@ CBouquetList::CBouquetList(const char * const Name)
|
||||
|
||||
CBouquetList::~CBouquetList()
|
||||
{
|
||||
for (std::vector<CBouquet *>::iterator it = Bouquets.begin(); it != Bouquets.end(); it++) {
|
||||
for (std::vector<CBouquet *>::iterator it = Bouquets.begin(); it != Bouquets.end(); ++it) {
|
||||
delete (*it);
|
||||
}
|
||||
Bouquets.clear();
|
||||
|
Reference in New Issue
Block a user