[Liblas-commits] hg: clean up another GUID temporary #161
liblas-commits at liblas.org
liblas-commits at liblas.org
Wed Jan 13 11:22:13 EST 2010
changeset 617380602b5e in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=617380602b5e
summary: clean up another GUID temporary #161
diffstat:
src/las_c_api.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r ba901d0fd979 -r 617380602b5e src/las_c_api.cpp
--- a/src/las_c_api.cpp Wed Jan 13 10:10:30 2010 -0600
+++ b/src/las_c_api.cpp Wed Jan 13 10:17:39 2010 -0600
@@ -1653,7 +1653,7 @@
VALIDATE_LAS_POINTER1(string, "LASGuid_CreateFromString", NULL);
liblas::guid id;
try {
- id = liblas::guid::guid(string);
+ id = liblas::guid(string);
return (LASGuidH) new liblas::guid(id);
}
catch (std::exception const& e) {
More information about the Liblas-commits
mailing list