config_begin.hpp 642 B

123456789101112131415161718192021
  1. // Boost.Geometry Index
  2. //
  3. // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
  4. //
  5. // Use, modification and distribution is subject to the Boost Software License,
  6. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #include <boost/config.hpp>
  9. #ifdef BOOST_MSVC
  10. #pragma warning (push)
  11. #pragma warning (disable : 4512) // assignment operator could not be generated
  12. #pragma warning (disable : 4127) // conditional expression is constant
  13. // temporary?
  14. #pragma warning (disable : 4180) // qualifier applied to function type has no meaning
  15. #endif //BOOST_MSVC