]> 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:31:47 +0000 (22:31 +0200)
stglibs/common.lib/common.cpp
stglibs/common.lib/include/stg/common.h

index 22ec354b002442eab12f55b8868ddee7254669e8..8b62e68b0fad70adfd55e8c4c445c1b352c0b43a 100644 (file)
@@ -752,6 +752,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 f46c922aedf6a85be7423b00c0a97285af40f064..af0f89a181c66dafd477356a5429f6baf148d7e2 100644 (file)
@@ -152,6 +152,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);