Brian Silverman | 1f5d398 | 2018-08-04 23:37:52 -0700 | [diff] [blame^] | 1 | ////////////////////////////////////////////////////////////////////////////// |
| 2 | // |
| 3 | // (C) Copyright Ion Gaztanaga 2012-2012. Distributed under the Boost |
| 4 | // Software License, Version 1.0. (See accompanying file |
| 5 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 6 | // |
| 7 | // See http://www.boost.org/libs/move for documentation. |
| 8 | // |
| 9 | ////////////////////////////////////////////////////////////////////////////// |
| 10 | #ifndef BOOST_CONFIG_HPP |
| 11 | #include <boost/config.hpp> |
| 12 | #endif |
| 13 | |
| 14 | #ifdef BOOST_MSVC |
| 15 | # pragma warning (push) |
| 16 | # pragma warning (disable : 4324) // structure was padded due to __declspec(align()) |
| 17 | # pragma warning (disable : 4675) // "function": resolved overload was found by argument-dependent lookup |
| 18 | # pragma warning (disable : 4996) // "function": was declared deprecated (_CRT_SECURE_NO_DEPRECATE/_SCL_SECURE_NO_WARNINGS) |
| 19 | # pragma warning (disable : 4714) // "function": marked as __forceinline not inlined |
| 20 | # pragma warning (disable : 4127) // conditional expression is constant |
| 21 | #endif |