From d2b64216ca881f274257996d8963bdf778ae9c8a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 29 Apr 2014 08:39:32 +0200 Subject: Add pre/post headers (VC warning disable) --- xml/details/post.hxx | 7 +++++++ xml/details/pre.hxx | 21 +++++++++++++++++++++ xml/exception.hxx | 4 ++++ xml/parser.hxx | 4 ++++ xml/qname.hxx | 4 ++++ xml/serializer.hxx | 4 ++++ xml/value-traits.hxx | 4 ++++ 7 files changed, 48 insertions(+) create mode 100644 xml/details/post.hxx create mode 100644 xml/details/pre.hxx (limited to 'xml') 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 diff --git a/xml/exception.hxx b/xml/exception.hxx index adb242f..aebb094 100644 --- a/xml/exception.hxx +++ b/xml/exception.hxx @@ -5,6 +5,8 @@ #ifndef XML_EXCEPTION_HXX #define XML_EXCEPTION_HXX +#include + #include #include @@ -14,4 +16,6 @@ namespace xml struct LIBSTUDXML_EXPORT exception: std::exception {}; } +#include + #endif // XML_EXCEPTION_HXX diff --git a/xml/parser.hxx b/xml/parser.hxx index 09afc56..81aa506 100644 --- a/xml/parser.hxx +++ b/xml/parser.hxx @@ -5,6 +5,8 @@ #ifndef XML_PARSER_HXX #define XML_PARSER_HXX +#include + #include #include #include @@ -419,4 +421,6 @@ namespace xml #include #include +#include + #endif // XML_PARSER_HXX diff --git a/xml/qname.hxx b/xml/qname.hxx index be1bf00..027fcc8 100644 --- a/xml/qname.hxx +++ b/xml/qname.hxx @@ -5,6 +5,8 @@ #ifndef XML_QNAME_HXX #define XML_QNAME_HXX +#include + #include #include @@ -75,4 +77,6 @@ namespace xml operator<< (std::ostream&, const qname&); } +#include + #endif // XML_QNAME_HXX diff --git a/xml/serializer.hxx b/xml/serializer.hxx index 59baff8..91abf63 100644 --- a/xml/serializer.hxx +++ b/xml/serializer.hxx @@ -5,6 +5,8 @@ #ifndef XML_SERIALIZER_HXX #define XML_SERIALIZER_HXX +#include + #include #include #include // std::size_t @@ -177,4 +179,6 @@ namespace xml #include +#include + #endif // XML_SERIALIZER_HXX diff --git a/xml/value-traits.hxx b/xml/value-traits.hxx index 7531f2c..61618d5 100644 --- a/xml/value-traits.hxx +++ b/xml/value-traits.hxx @@ -5,6 +5,8 @@ #ifndef XML_VALUE_TRAITS_HXX #define XML_VALUE_TRAITS_HXX +#include + #include #include // std::size_t @@ -48,4 +50,6 @@ namespace xml #include +#include + #endif // XML_VALUE_TRAITS_HXX -- cgit v1.1