mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix two compiler warnings
This commit is contained in:
@@ -73,7 +73,7 @@ void RifColumnBasedRsmspecParser::parseData(const QString& data)
|
||||
|
||||
for (size_t i = 0; i < columnCount; i++)
|
||||
{
|
||||
double entry = entries.at(i).toDouble();
|
||||
double entry = entries.at(static_cast<int>(i)).toDouble();
|
||||
table[i].values.push_back(entry);
|
||||
}
|
||||
} while (std::getline(streamData, line));
|
||||
|
||||
Reference in New Issue
Block a user