15 Feb
2012
15 Feb
'12
9:19 p.m.
Hi all
During another round of cppcheck, I stumbled upon some weird code in sp-conn-end.cpp. Can someone have a look at line 77 to 85?
This block of code does not seem right (why is for-loop variable i used again as for loop variable in a sub loop?): ------------- for (Geom::CrossingSet::const_iterator i = cross.begin(); i != cross.end(); i++) { const Geom::Crossings& cr = *i;
for (Geom::Crossings::const_iterator i = cr.begin(); i != cr.end(); i++) { -------------
Regards K.