mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use correct type in loop
This commit is contained in:
@@ -345,7 +345,7 @@ void RivGridBoxGenerator::createGridBoxLegendParts()
|
|||||||
|
|
||||||
createLegend((EdgeType)edge, &parts);
|
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));
|
m_gridBoxLegendParts.push_back(parts.at(i));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user