config_begin.hpp 841 B

1234567891011121314151617181920212223
  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. #ifdef BOOST_MSVC
  12. #ifndef _CRT_SECURE_NO_DEPRECATE
  13. #define BOOST_MOVE_CRT_SECURE_NO_DEPRECATE
  14. #define _CRT_SECURE_NO_DEPRECATE
  15. #endif
  16. #ifndef _SCL_SECURE_NO_WARNINGS
  17. #define BOOST_MOVE_SCL_SECURE_NO_WARNINGS
  18. #define _SCL_SECURE_NO_WARNINGS
  19. #endif
  20. #pragma warning (push)
  21. #pragma warning (disable : 4996) // "function": was declared deprecated
  22. #endif