MSVC 7 compilation

This commit is contained in:
fredb
2007-06-16 16:13:29 +00:00
parent 80bcaa49e6
commit e696c884dc

View File

@@ -64,8 +64,7 @@ public:
LightList sortedLights;
sortedLights.reserve(_lights.size());
LightSet::const_iterator i;
for (i = lightSet.begin(); i != lightSet.end(); ++i)
for (LightSet::const_iterator i = lightSet.begin(); i != lightSet.end(); ++i)
sortedLights.push_back(*i);
return sortedLights;