aboutsummaryrefslogtreecommitdiff
path: root/xml/details
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-04-29 08:39:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-04-29 08:39:32 +0200
commitd2b64216ca881f274257996d8963bdf778ae9c8a (patch)
tree0ffcbb14addab4103196cee452764d767f1f82d3 /xml/details
parent871082dc018815261b6ec75a8e4933505389ffae (diff)
Add pre/post headers (VC warning disable)
Diffstat (limited to 'xml/details')
-rw-r--r--xml/details/post.hxx7
-rw-r--r--xml/details/pre.hxx21
2 files changed, 28 insertions, 0 deletions
diff --git a/xml/details/post.hxx b/xml/details/post.hxx
new file mode 100644
index 0000000..c58fbc6
--- /dev/null
+++ b/xml/details/post.hxx
@@ -0,0 +1,7 @@
+// file : xml/details/post.hxx
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifdef _MSC_VER
+# pragma warning (pop)
+#endif
diff --git a/xml/details/pre.hxx b/xml/details/pre.hxx
new file mode 100644
index 0000000..914b5a8
--- /dev/null
+++ b/xml/details/pre.hxx
@@ -0,0 +1,21 @@
+// file : xml/details/pre.hxx
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifdef _MSC_VER
+ // Push warning state.
+ //
+# pragma warning (push, 3)
+
+ // Disabled warnings.
+ //
+# 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
+
+// Elevated warnings.
+//
+# pragma warning (2:4239) // standard doesn't allow this conversion
+
+#endif