[Liblas-commits] hg-1.6: default to writing 0xAABB into the reserved section of t...

liblas-commits at liblas.org liblas-commits at liblas.org
Wed Feb 23 10:04:20 EST 2011


details:   http://hg.liblas.orghg-1.6/rev/59f1f42d9f5d
changeset: 2855:59f1f42d9f5d
user:      Howard Butler <hobu.inc at gmail.com>
date:      Wed Feb 23 09:03:41 2011 -0600
description:
default to writing 0xAABB into the reserved section of the VLR.  This only matters for 1.0 data, but many folks still seem to do it for 1.1-1.3 #217

diffstat:

 src/variablerecord.cpp |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r bbae04bc10a7 -r 59f1f42d9f5d src/variablerecord.cpp
--- a/src/variablerecord.cpp	Tue Feb 22 14:09:47 2011 -0600
+++ b/src/variablerecord.cpp	Wed Feb 23 09:03:41 2011 -0600
@@ -58,7 +58,7 @@
 
 VariableRecord::VariableRecord()
     : m_data(40)
-    , m_reserved(0)
+    , m_reserved(0xAABB)
     , m_record_id(0)
     , m_record_size(0)
 {    


More information about the Liblas-commits mailing list