blob: f898dd49bddcd4017506ead455be71c08960c32c [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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070012#ifdef NDNBOOST_MSVC
Jeff Thompsona28eed82013-08-22 16:21:10 -070013 #ifndef _CRT_SECURE_NO_DEPRECATE
Jeff Thompson3d613fd2013-10-15 15:39:04 -070014 #define NDNBOOST_MOVE_CRT_SECURE_NO_DEPRECATE
Jeff Thompsona28eed82013-08-22 16:21:10 -070015 #define _CRT_SECURE_NO_DEPRECATE
16 #endif
17 #ifndef _SCL_SECURE_NO_WARNINGS
Jeff Thompson3d613fd2013-10-15 15:39:04 -070018 #define NDNBOOST_MOVE_SCL_SECURE_NO_WARNINGS
Jeff Thompsona28eed82013-08-22 16:21:10 -070019 #define _SCL_SECURE_NO_WARNINGS
20 #endif
21 #pragma warning (push)
22 #pragma warning (disable : 4996) // "function": was declared deprecated
23#endif