]> git.stg.codes - stg.git/blobdiff - stglibs/common.lib/common.cpp
Added x2str for double type.
[stg.git] / stglibs / common.lib / common.cpp
index b871b36b61daa40054b3b99087243b5b7dc3dd50..15547b49122e4fa0ade9d6d98ab000e1c56cda14 100644 (file)
@@ -804,6 +804,13 @@ const std::string & x2str(uint64_t x, std::string & s)
 return unsigned2str(x, s);
 }
 //---------------------------------------------------------------------------
+const std::string & x2str(double x, std::string & s)
+{
+char buf[256];
+s = snprintf(buf, sizeof(buf), "%f", x);
+return s;
+}
+//---------------------------------------------------------------------------
 std::string & TrimL(std::string & val)
 {
 size_t pos = val.find_first_not_of(" \t");