[Liblas-commits] hg: remove extra endl in summary
liblas-commits at liblas.org
liblas-commits at liblas.org
Fri Jul 1 14:32:31 EDT 2011
details: http://hg.liblas.orghg/rev/713dd1a38c49
changeset: 3063:713dd1a38c49
user: Howard Butler <hobu.inc at gmail.com>
date: Fri Jul 01 13:32:25 2011 -0500
description:
remove extra endl in summary
diffstat:
src/header.cpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (16 lines):
diff -r a1a0a7014028 -r 713dd1a38c49 src/header.cpp
--- a/src/header.cpp Fri Jul 01 12:28:28 2011 -0500
+++ b/src/header.cpp Fri Jul 01 13:32:25 2011 -0500
@@ -837,10 +837,9 @@
os << " Compressed: " << (tree.get<bool>("compressed")?"True":"False") << std::endl;
if (tree.get<bool>("compressed"))
{
- os << " Compression Info: " << tree.get<std::string>("compression_info");
+ os << " Compression Info: " << tree.get<std::string>("compression_info") << std::endl;
}
- os << std::endl;
-
+
os << " Number of Points by Return: " ;
BOOST_FOREACH(ptree::value_type &v,
tree.get_child("returns"))
More information about the Liblas-commits
mailing list