[Liblas-commits] hg-main-tree: Incorrect bounds initialization
liblas-commits at liblas.org
liblas-commits at liblas.org
Sat Jul 30 19:56:05 EDT 2011
details: http://hg.libpc.orghg-main-tree/rev/aed3e9b3938f
changeset: 973:aed3e9b3938f
user: Pete Gadomski <pete.gadomski at gmail.com>
date: Sat Jul 30 16:53:37 2011 -0700
description:
Incorrect bounds initialization
diffstat:
src/drivers/oci/Writer.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r b1ac01fddd4e -r aed3e9b3938f src/drivers/oci/Writer.cpp
--- a/src/drivers/oci/Writer.cpp Sat Jul 30 14:20:56 2011 -0500
+++ b/src/drivers/oci/Writer.cpp Sat Jul 30 16:53:37 2011 -0700
@@ -1205,7 +1205,7 @@
Vector<double> v(xd, yd);
if (first){
- output = pdal::Bounds<double>(xd, xd, yd, yd);
+ output = pdal::Bounds<double>(xd, yd, xd, yd);
first = false;
}
output.grow(v);
More information about the Liblas-commits
mailing list