Use std::from_chars to convert to int

This commit is contained in:
Magne Sjaastad
2021-10-15 17:28:08 +02:00
parent 0f1e09ed9b
commit 3fa59a9fc3
2 changed files with 5 additions and 7 deletions

View File

@@ -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() );
}
//--------------------------------------------------------------------------------------------------

View File

@@ -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 );