Skip to content

Commit

Permalink
Used fixed format for string output.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Sep 29, 2015
1 parent 52a14f9 commit 7f7f0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pdal/util/Utils.hpp
Expand Up @@ -393,7 +393,7 @@ namespace Utils
std::string toString(const T& from)
{
std::ostringstream oss;
oss << from;
oss << std::fixed << from;
return oss.str();
}

Expand Down

0 comments on commit 7f7f0f5

Please sign in to comment.