#922. Fixing -pS and -pX on MSVC.

This commit is contained in:
Robin Mills
2015-04-28 19:19:59 +00:00
parent a69026c911
commit 84bf485ebe
5 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ void push(Jzon::Node& node,const std::string& key,T i)
case Exiv2::tiffFloat:
case Exiv2::tiffDouble:
STORE(node,key,i->value().toFloat());
STORE(node,key,std::atof(value.c_str()) );
break;
case Exiv2::unsignedRational: