[Liblas-commits] laszip: "bool" is valid post-VC6

liblas-commits at liblas.org liblas-commits at liblas.org
Tue Jan 11 15:45:46 EST 2011


details:   http://hg.liblas.orglaszip/rev/1ee3a8a5125e
changeset: 132:1ee3a8a5125e
user:      Michael P. Gerlek <mpg at flaxen.com>
date:      Tue Jan 11 12:45:20 2011 -0800
description:
"bool" is valid post-VC6

diffstat:

 src/mydefs.hpp |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r a8cd44a5f152 -r 1ee3a8a5125e src/mydefs.hpp
--- a/src/mydefs.hpp	Tue Jan 11 08:42:14 2011 -0800
+++ b/src/mydefs.hpp	Tue Jan 11 12:45:20 2011 -0800
@@ -38,7 +38,7 @@
 typedef float              F32;
 typedef double             F64;
 
-#if defined(_WIN32)
+#if defined(_MSC_VER) && (_MSC_VER < 1300)
 typedef int                BOOL;
 #else
 typedef bool               BOOL;


More information about the Liblas-commits mailing list