mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed signed/unsigned issues
This commit is contained in:
parent
40ecdc5a7b
commit
bbf8c31762
@ -422,9 +422,9 @@ QString RimWellLogPlot::asciiDataForPlotExport() const
|
||||
}
|
||||
|
||||
|
||||
for (int i = static_cast<int>( curveDepths.size()) - 1; i >= 0; i--)
|
||||
for (int i = static_cast<int>(curveDepths.size()) - 1; i >= 0; i--)
|
||||
{
|
||||
if (i == curveDepths.size() - 1)
|
||||
if (i == static_cast<int>(curveDepths.size()) - 1)
|
||||
{
|
||||
if (depthType() == CONNECTION_NUMBER) out += "Connection";
|
||||
else if (depthType() == MEASURED_DEPTH) out += "MD ";
|
||||
|
Loading…
Reference in New Issue
Block a user