summaryrefslogtreecommitdiff
path: root/libxsd
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-11-11 09:37:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-11-11 09:37:45 +0200
commitb24970652f82ed60e3abb825e903beb506cfe814 (patch)
tree75016f64640dec8fdada3fa19103603a8a175657 /libxsd
parent43e6677107cb3a7c7556933acd94f231f19a54aa (diff)
Drop support for VC 7.1
Diffstat (limited to 'libxsd')
-rw-r--r--libxsd/xsd/cxx/compilers/vc-7/post.hxx6
-rw-r--r--libxsd/xsd/cxx/compilers/vc-7/pre.hxx36
-rw-r--r--libxsd/xsd/cxx/post.hxx3
-rw-r--r--libxsd/xsd/cxx/pre.hxx5
4 files changed, 1 insertions, 49 deletions
diff --git a/libxsd/xsd/cxx/compilers/vc-7/post.hxx b/libxsd/xsd/cxx/compilers/vc-7/post.hxx
deleted file mode 100644
index 02d1e76..0000000
--- a/libxsd/xsd/cxx/compilers/vc-7/post.hxx
+++ /dev/null
@@ -1,6 +0,0 @@
-// file : xsd/cxx/compilers/vc-7/post.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#pragma warning (pop)
diff --git a/libxsd/xsd/cxx/compilers/vc-7/pre.hxx b/libxsd/xsd/cxx/compilers/vc-7/pre.hxx
deleted file mode 100644
index 6dc0c76..0000000
--- a/libxsd/xsd/cxx/compilers/vc-7/pre.hxx
+++ /dev/null
@@ -1,36 +0,0 @@
-// file : xsd/cxx/compilers/vc-7/pre.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-
-#if (_MSC_VER < 1310)
-# error Microsoft Visual C++ 7.0 (.NET 2002) is not supported.
-#endif
-
-
-// These warnings had to be disabled "for good".
-//
-#pragma warning (disable:4250) // inherits via dominance
-#pragma warning (disable:4505) // unreferenced local function has been removed
-#pragma warning (disable:4661) // no definition for explicit instantiation
-
-
-// Push warning state.
-//
-#pragma warning (push, 3)
-
-
-// Disabled warnings.
-//
-#pragma warning (disable:4355) // passing 'this' to a member
-#pragma warning (disable:4584) // is already a base-class
-#pragma warning (disable:4800) // forcing value to bool
-#pragma warning (disable:4275) // non dll-interface base
-#pragma warning (disable:4251) // base needs to have dll-interface
-#pragma warning (disable:4224) // nonstandard extension (/Za option)
-
-
-// Elevated warnings.
-//
-#pragma warning (2:4239) // standard doesn't allow this conversion
diff --git a/libxsd/xsd/cxx/post.hxx b/libxsd/xsd/cxx/post.hxx
index 37c8de3..416cf3e 100644
--- a/libxsd/xsd/cxx/post.hxx
+++ b/libxsd/xsd/cxx/post.hxx
@@ -3,11 +3,8 @@
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
#ifdef _MSC_VER
# if (_MSC_VER >= 1400)
# include <xsd/cxx/compilers/vc-8/post.hxx>
-# elif (_MSC_VER >= 1300)
-# include <xsd/cxx/compilers/vc-7/post.hxx>
# endif
#endif
diff --git a/libxsd/xsd/cxx/pre.hxx b/libxsd/xsd/cxx/pre.hxx
index 0df3315..c159627 100644
--- a/libxsd/xsd/cxx/pre.hxx
+++ b/libxsd/xsd/cxx/pre.hxx
@@ -3,13 +3,10 @@
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
#ifdef _MSC_VER
# if (_MSC_VER >= 1400)
# include <xsd/cxx/compilers/vc-8/pre.hxx>
-# elif (_MSC_VER >= 1300)
-# include <xsd/cxx/compilers/vc-7/pre.hxx>
# else
-# error Microsoft Visual C++ 6 is not supported.
+# error Microsoft Visual C++ 7.1 and earlier are not supported
# endif
#endif