Kaydet (Commit) 0fa12e0b authored tarafından Julien Nabet's avatar Julien Nabet

Prefer prefix ++/-- operators for non-primitive types

üst 49d7d4b3
......@@ -252,12 +252,12 @@ public:
void dump()
{
printf("Destinations:\n");
for(ScannerTestServiceTokenMap::iterator i=destMap.begin();i!=destMap.end();i++)
for(ScannerTestServiceTokenMap::iterator i=destMap.begin();i!=destMap.end();++i)
{
printf(" %s\n", i->getStr());
}
printf("Ctrls:\n");
for(ScannerTestServiceTokenMap::iterator i=ctrlMap.begin();i!=ctrlMap.end();i++)
for(ScannerTestServiceTokenMap::iterator i=ctrlMap.begin();i!=ctrlMap.end();++i)
{
printf(" %s\n", i->getStr());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment