[Liblas-commits] laszip: refine MSC_VER for vc6 usage

liblas-commits at liblas.org liblas-commits at liblas.org
Tue Dec 14 22:35:56 EST 2010


changeset d434ceaf93ac in /Volumes/Data/www/liblas.org/laszip
details: http://hg.liblas.orglaszip?cmd=changeset;node=d434ceaf93ac
summary: refine MSC_VER for vc6 usage

diffstat:

 include/laszip/laszipper.hpp  |  2 +-
 src/bytestreamin_istream.hpp  |  2 +-
 src/bytestreamout_ostream.hpp |  2 +-
 tools/laszippertest.cpp       |  2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diffs (48 lines):

diff -r a2f165041d2a -r d434ceaf93ac include/laszip/laszipper.hpp
--- a/include/laszip/laszipper.hpp	Tue Dec 14 18:21:57 2010 -0800
+++ b/include/laszip/laszipper.hpp	Tue Dec 14 19:35:05 2010 -0800
@@ -48,7 +48,7 @@
 
 #include <stdio.h>
 
-#ifdef _MSC_VER
+#if _MSC_VER < 1300
 #include <ostream.h>
 #else
 #include <fstream>
diff -r a2f165041d2a -r d434ceaf93ac src/bytestreamin_istream.hpp
--- a/src/bytestreamin_istream.hpp	Tue Dec 14 18:21:57 2010 -0800
+++ b/src/bytestreamin_istream.hpp	Tue Dec 14 19:35:05 2010 -0800
@@ -46,7 +46,7 @@
 
 #include "bytestreamin.hpp"
 
-#ifdef _MSC_VER
+#if _MSC_VER < 1300
 #include <istream.h>
 #else
 #include <fstream>
diff -r a2f165041d2a -r d434ceaf93ac src/bytestreamout_ostream.hpp
--- a/src/bytestreamout_ostream.hpp	Tue Dec 14 18:21:57 2010 -0800
+++ b/src/bytestreamout_ostream.hpp	Tue Dec 14 19:35:05 2010 -0800
@@ -46,7 +46,7 @@
 
 #include "bytestreamout.hpp"
 
-#ifdef _MSC_VER
+#if _MSC_VER < 1300
 #include <ostream.h>
 #else
 #include <fstream>
diff -r a2f165041d2a -r d434ceaf93ac tools/laszippertest.cpp
--- a/tools/laszippertest.cpp	Tue Dec 14 18:21:57 2010 -0800
+++ b/tools/laszippertest.cpp	Tue Dec 14 19:35:05 2010 -0800
@@ -48,7 +48,7 @@
 #include "laszipper.hpp"
 #include "lasunzipper.hpp"
 
-#ifdef _MSC_VER
+#if _MSC_VER < 1300
 #include <istream.h>
 #include <ostream.h>
 #include <fstream.h>


More information about the Liblas-commits mailing list