blob: 4368aeb7afe01179a5c80ff100e5a6744e76b4d6 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001//////////////////////////////////////////////////////////////////////////////
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 <ndnboost/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