Use correct type in loop

This commit is contained in:
Magne Sjaastad
2015-11-17 17:04:49 +01:00
parent cf38d1e6fe
commit ecba44d7c8

View File

@@ -345,7 +345,7 @@ void RivGridBoxGenerator::createGridBoxLegendParts()
createLegend((EdgeType)edge, &parts);
for (int i = 0; i < parts.size(); i++)
for (size_t i = 0; i < parts.size(); i++)
{
m_gridBoxLegendParts.push_back(parts.at(i));
}