aboutsummaryrefslogtreecommitdiff
path: root/odb/compilers/vc/pre.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/compilers/vc/pre.hxx')
-rw-r--r--odb/compilers/vc/pre.hxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/odb/compilers/vc/pre.hxx b/odb/compilers/vc/pre.hxx
deleted file mode 100644
index 47e3cb5..0000000
--- a/odb/compilers/vc/pre.hxx
+++ /dev/null
@@ -1,23 +0,0 @@
-// file : odb/compilers/vc/pre.hxx
-// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-// Push warning state.
-//
-#pragma warning (push, 3)
-
-// Disabled warnings.
-//
-#pragma warning (disable:4068) // unknown pragma
-#pragma warning (disable:4251) // needs to have DLL-interface
-#pragma warning (disable:4290) // exception specification ignored
-#pragma warning (disable:4355) // passing 'this' to a member
-#pragma warning (disable:4800) // forcing value to bool
-#pragma warning (disable:4231) // non-standard extension (extern template)
-#pragma warning (disable:4275) // "C4251 is essentially noise and can be
- // silenced" - Stephan T. Lavavej [And C4275
- // is essentially the same thing.]
-
-// Elevated warnings.
-//
-#pragma warning (2:4239) // standard doesn't allow this conversion