[Liblas-commits] hg: 2 new changesets

liblas-commits at liblas.org liblas-commits at liblas.org
Wed Jan 13 11:14:52 EST 2010


changeset f83b2300235d in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=f83b2300235d
summary: fix #161 - guid temporary in C API

changeset ba901d0fd979 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=ba901d0fd979
summary: ignore osx crap

diffstat:

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

diffs (20 lines):

diff -r 1576dbef2f3d -r ba901d0fd979 .hgignore
--- a/.hgignore	Tue Jan 12 08:15:54 2010 -0600
+++ b/.hgignore	Wed Jan 13 10:10:30 2010 -0600
@@ -62,3 +62,4 @@
 src/liblas.a
 Debug
 Release
+.DS_Store
diff -r 1576dbef2f3d -r ba901d0fd979 src/las_c_api.cpp
--- a/src/las_c_api.cpp	Tue Jan 12 08:15:54 2010 -0600
+++ b/src/las_c_api.cpp	Wed Jan 13 10:10:30 2010 -0600
@@ -811,7 +811,7 @@
 
     try {
         liblas::guid id;
-        id = liblas::guid::guid(value);
+        id = liblas::guid(value);
         ((LASHeader*) hHeader)->SetProjectId(id);    
     } catch (std::exception const& e)
     {


More information about the Liblas-commits mailing list