mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Temporarily disable use of std::from_chars and <charconv>
On CentOS7, the include of <charconv> seems not to be present. Use previous conversion method for now.
This commit is contained in:
parent
ae7139e18d
commit
70a11e7fc3
@ -21,7 +21,6 @@
|
||||
#include "fast_float/include/fast_float/fast_float.h"
|
||||
|
||||
#include <cctype>
|
||||
#include <charconv>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@ -123,11 +122,14 @@ bool RiaStdStringTools::toDouble( const std::string_view& s, double& value )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RiaStdStringTools::toInt( const std::string_view& s, int& value )
|
||||
bool RiaStdStringTools::toInt( const std::string& s, int& value )
|
||||
{
|
||||
auto resultObject = std::from_chars( s.data(), s.data() + s.size(), value );
|
||||
// auto resultObject = std::from_chars( s.data(), s.data() + s.size(), value );
|
||||
// return ( resultObject.ec == std::errc() );
|
||||
|
||||
return ( resultObject.ec == std::errc() );
|
||||
value = toInt( s );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -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_view& s, int& value );
|
||||
static bool toInt( const std::string& s, int& value );
|
||||
|
||||
static std::string toUpper( const std::string& s );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user