[Liblas-commits] hg: use ::uint32_t instead of liblas::uint32_t for return type f...

liblas-commits at liblas.org liblas-commits at liblas.org
Mon Nov 16 17:45:19 EST 2009


changeset 8f46f514a6c9 in /home/www/liblas.org/hg
details: http://hg.liblas.org/main/hg?cmd=changeset;node=8f46f514a6c9
summary: use ::uint32_t instead of liblas::uint32_t for return type for size()

diffstat:

 include/liblas/index/datastream.hpp |  2 +-
 src/index/datastream.cpp            |  2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 9380e733d922 -r 8f46f514a6c9 include/liblas/index/datastream.hpp
--- a/include/liblas/index/datastream.hpp	Thu Nov 12 09:03:02 2009 -0600
+++ b/include/liblas/index/datastream.hpp	Mon Nov 16 16:45:19 2009 -0600
@@ -71,7 +71,7 @@
     SpatialIndex::IData* getNext();
     bool hasNext() throw (Tools::NotSupportedException);
 
-    uint32_t size() throw (Tools::NotSupportedException);
+    ::uint32_t size() throw (Tools::NotSupportedException);
     void rewind() throw (Tools::NotSupportedException);
 
     /// Sets the index dimension
diff -r 9380e733d922 -r 8f46f514a6c9 src/index/datastream.cpp
--- a/src/index/datastream.cpp	Thu Nov 12 09:03:02 2009 -0600
+++ b/src/index/datastream.cpp	Mon Nov 16 16:45:19 2009 -0600
@@ -112,7 +112,7 @@
     return (m_pNext != 0);
 }
 
-uint32_t LASIndexDataStream::size() throw (Tools::NotSupportedException)
+::uint32_t LASIndexDataStream::size() throw (Tools::NotSupportedException)
 {
     throw Tools::NotSupportedException("Operation not supported.");
 }


More information about the Liblas-commits mailing list