Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/move/detail/config_begin.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | 5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
6 // | 6 // |
7 // See http://www.boost.org/libs/move for documentation. | 7 // See http://www.boost.org/libs/move for documentation. |
8 // | 8 // |
9 ////////////////////////////////////////////////////////////////////////////// | 9 ////////////////////////////////////////////////////////////////////////////// |
10 #ifndef BOOST_CONFIG_HPP | |
10 #include <boost/config.hpp> | 11 #include <boost/config.hpp> |
12 #endif | |
11 | 13 |
12 #ifdef BOOST_MSVC | 14 #ifdef BOOST_MSVC |
13 #ifndef _CRT_SECURE_NO_DEPRECATE | 15 # pragma warning (push) |
14 #define BOOST_MOVE_CRT_SECURE_NO_DEPRECATE | 16 # pragma warning (disable : 4324) // structure was padded due to __declspec(align()) |
15 #define _CRT_SECURE_NO_DEPRECATE | 17 # pragma warning (disable : 4675) // "function": resolved overload was found by argument-dependent lookup |
16 #endif | 18 # pragma warning (disable : 4996) // "function": was declared deprecated (_CRT_SECURE_NO_DEPRECATE/_SCL_SECURE_NO_WARNINGS) |
17 #ifndef _SCL_SECURE_NO_WARNINGS | |
18 #define BOOST_MOVE_SCL_SECURE_NO_WARNINGS | |
19 #define _SCL_SECURE_NO_WARNINGS | |
20 #endif | |
21 #pragma warning (push) | |
22 #pragma warning (disable : 4996) // "function": was declared deprecated | |
23 #endif | 19 #endif |