mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use std::from_chars to convert to int
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
#include "fast_float/include/fast_float/fast_float.h"
|
||||
|
||||
#include <cctype>
|
||||
#include <charconv>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@@ -122,14 +123,11 @@ bool RiaStdStringTools::toDouble( const std::string_view& s, double& value )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RiaStdStringTools::toInt( const std::string& s, int& value )
|
||||
bool RiaStdStringTools::toInt( const std::string_view& s, int& value )
|
||||
{
|
||||
// auto resultObject = std::from_chars( s.data(), s.data() + s.size(), value );
|
||||
// return ( resultObject.ec == std::errc() );
|
||||
auto resultObject = std::from_chars( s.data(), s.data() + s.size(), value );
|
||||
|
||||
value = toInt( s );
|
||||
|
||||
return true;
|
||||
return ( resultObject.ec == std::errc() );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -41,7 +41,7 @@ public:
|
||||
|
||||
// Conversion using fastest known approach
|
||||
static bool toDouble( const std::string_view& s, double& value );
|
||||
static bool toInt( const std::string& s, int& value );
|
||||
static bool toInt( const std::string_view& s, int& value );
|
||||
|
||||
static std::string toUpper( const std::string& s );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user