comparison DEPENDENCIES/generic/include/boost/move/detail/config_begin.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
comparison
equal deleted inserted replaced
15:663ca0da4350 16:2665513ce2d3
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 #include <boost/config.hpp>
11
12 #ifdef BOOST_MSVC
13 #ifndef _CRT_SECURE_NO_DEPRECATE
14 #define BOOST_MOVE_CRT_SECURE_NO_DEPRECATE
15 #define _CRT_SECURE_NO_DEPRECATE
16 #endif
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