From 7f7f0f52721b6eb509b27d0088e608d1b216862d Mon Sep 17 00:00:00 2001 From: Andrew Bell Date: Tue, 29 Sep 2015 15:22:35 -0500 Subject: [PATCH] Used fixed format for string output. --- include/pdal/util/Utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pdal/util/Utils.hpp b/include/pdal/util/Utils.hpp index 4fc220d976..f0e6053150 100644 --- a/include/pdal/util/Utils.hpp +++ b/include/pdal/util/Utils.hpp @@ -393,7 +393,7 @@ namespace Utils std::string toString(const T& from) { std::ostringstream oss; - oss << from; + oss << std::fixed << from; return oss.str(); }