mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improve interface for string operations
Trim incoming string before converting to number Remove use of std::strtod and std::stoi Use std::string_view instead of std::string when possible
This commit is contained in:
@@ -228,7 +228,8 @@ bool RifEclipseUserDataParserTools::hasOnlyValidDoubleValues( const std::vector<
|
||||
}
|
||||
else
|
||||
{
|
||||
double doubleVal = RiaStdStringTools::toDouble( word );
|
||||
double doubleVal = 0.0;
|
||||
RiaStdStringTools::toDouble( word, doubleVal );
|
||||
doubleValues->push_back( doubleVal );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user