mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use size_t instead of int
This commit is contained in:
@@ -711,7 +711,7 @@ void RicWellPathExportMswCompletionsImpl::generateWsegAicdTable(RifEclipseDataTa
|
|||||||
|
|
||||||
formatter.keyword("WSEGAICD");
|
formatter.keyword("WSEGAICD");
|
||||||
formatter.comment("Column Overview:");
|
formatter.comment("Column Overview:");
|
||||||
for (int i = 0; i < columnDescriptions.size(); ++i)
|
for (size_t i = 0; i < columnDescriptions.size(); ++i)
|
||||||
{
|
{
|
||||||
formatter.comment(QString("%1: %2").arg(i + 1, 2, 10, QChar('0')).arg(columnDescriptions[i]));
|
formatter.comment(QString("%1: %2").arg(i + 1, 2, 10, QChar('0')).arg(columnDescriptions[i]));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user