]> git.stg.codes - stg.git/commitdiff
Added specialization of str2x for doubles.
authorMaxim Mamontov <faust.madf@gmail.com>
Wed, 9 Dec 2015 20:21:45 +0000 (22:21 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Wed, 9 Dec 2015 20:21:45 +0000 (22:21 +0200)
stglibs/common.lib/common.cpp
stglibs/common.lib/include/stg/common.h

index 90493e9f83783c3ed926ee32f479c64ed134517d..b527ac588b9ff5d3f2c983b3e967b476b90733dd 100644 (file)
@@ -753,6 +753,11 @@ if (errno == ERANGE)
 
 return 0;
 }
+//---------------------------------------------------------------------------
+int str2x(const std::string & str, double & x)
+{
+return strtodouble2(str.c_str(), x);
+}
 #ifndef WIN32
 //---------------------------------------------------------------------------
 int str2x(const std::string & str, int64_t & x)
index e90ad75a146583f3c47fffbb3f9c627b6d5daaa5..a20c3d9fe068ce2e774ddf4fdf683734b79d4413 100644 (file)
@@ -151,6 +151,7 @@ std::string ToPrintable(const std::string & src);
 //-----------------------------------------------------------------------------
 int str2x(const std::string & str, int32_t & x);
 int str2x(const std::string & str, uint32_t & x);
+int str2x(const std::string & str, double & x);
 #ifndef WIN32
 int str2x(const std::string & str, int64_t & x);
 int str2x(const std::string & str, uint64_t & x);