[Liblas-commits] hg: sync with laszip changes
liblas-commits at liblas.org
liblas-commits at liblas.org
Mon Dec 27 14:45:00 EST 2010
details: http://hg.liblas.orghg/rev/cc96cb47b8eb
changeset: 2650:cc96cb47b8eb
user: Michael P. Gerlek <mpg at flaxen.com>
date: Mon Dec 27 12:44:33 2010 -0700
description:
sync with laszip changes
diffstat:
src/detail/reader/zipreader.cpp | 2 +-
src/detail/writer/zipwriter.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diffs (24 lines):
diff -r 46fdecf6b01c -r cc96cb47b8eb src/detail/reader/zipreader.cpp
--- a/src/detail/reader/zipreader.cpp Fri Dec 24 13:09:47 2010 -0800
+++ b/src/detail/reader/zipreader.cpp Mon Dec 27 12:44:33 2010 -0700
@@ -118,7 +118,7 @@
ConstructItems();
- unsigned int stat = m_unzipper->open(m_ifs, m_num_items, m_items, LASZIP_COMPRESSION_DEFAULT);
+ unsigned int stat = m_unzipper->open(m_ifs, m_num_items, m_items, LASzip::COMPRESSION_DEFAULT);
if (stat != 0)
throw liblas_error("Failed to open laszip decompression engine");
}
diff -r 46fdecf6b01c -r cc96cb47b8eb src/detail/writer/zipwriter.cpp
--- a/src/detail/writer/zipwriter.cpp Fri Dec 24 13:09:47 2010 -0800
+++ b/src/detail/writer/zipwriter.cpp Mon Dec 27 12:44:33 2010 -0700
@@ -171,7 +171,7 @@
ConstructItems();
- unsigned int stat = m_zipper->open(m_ofs, m_num_items, m_items, LASZIP_COMPRESSION_DEFAULT);
+ unsigned int stat = m_zipper->open(m_ofs, m_num_items, m_items, LASzip::COMPRESSION_DEFAULT);
if (stat != 0)
throw liblas_error("Error opening compression engine");
}
More information about the Liblas-commits
mailing list