Yet another fix to pre-c++2011 compilation..... (not trying to raise my commit count, I swear!!)

This commit is contained in:
Marianne Gagnon
2014-05-10 20:53:51 -04:00
parent 7808fc8a09
commit 00ea15b7bb

View File

@@ -79,7 +79,7 @@ void IrrDebugDrawer::drawLine(const btVector3& from, const btVector3& to,
void IrrDebugDrawer::beginNextFrame()
{
for (std::map<video::SColor, std::vector<float>>::iterator it = m_lines.begin(); it != m_lines.end(); it++)
for (std::map<video::SColor, std::vector<float> >::iterator it = m_lines.begin(); it != m_lines.end(); it++)
{
it->second.clear();
}