config_begin.hpp 1008 B

123456789101112131415161718192021
  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. #ifdef BOOST_MSVC
  14. # pragma warning (push)
  15. # pragma warning (disable : 4324) // structure was padded due to __declspec(align())
  16. # pragma warning (disable : 4675) // "function": resolved overload was found by argument-dependent lookup
  17. # pragma warning (disable : 4996) // "function": was declared deprecated (_CRT_SECURE_NO_DEPRECATE/_SCL_SECURE_NO_WARNINGS)
  18. # pragma warning (disable : 4714) // "function": marked as __forceinline not inlined
  19. # pragma warning (disable : 4127) // conditional expression is constant
  20. #endif