Compile with float/double again.
authorDavid Gow <[email protected]>
Sat, 4 Oct 2014 10:47:43 +0000 (18:47 +0800)
committerDavid Gow <[email protected]>
Sat, 4 Oct 2014 10:47:43 +0000 (18:47 +0800)
src/real.h

index e4d594e..917f3e0 100644 (file)
@@ -61,11 +61,11 @@ namespace IPDF
 #if REALTYPE == REAL_SINGLE
        typedef float Real;
        inline Real RealFromStr(const char * str) {return strtof(str, NULL);}
-       //inline std::string Str(const Real & a) {std::stringstream s; s << a; return s.str();}
+       inline std::string Str(const Real & a) {std::stringstream s; s << a; return s.str();}
 #elif REALTYPE == REAL_DOUBLE
        typedef double Real;
        inline Real RealFromStr(const char * str) {return strtod(str, NULL);}
-       //inline std::string Str(const Real & a) {std::stringstream s; s << a; return s.str();}
+       inline std::string Str(const Real & a) {std::stringstream s; s << a; return s.str();}
 #elif REALTYPE == REAL_LONG_DOUBLE
        typedef long double Real;
        inline Real RealFromStr(const char * str) {return strtold(str, NULL);}

UCC git Repository :: git.ucc.asn.au