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#endif
20