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 
9 #include <boost/config.hpp>
10 
11 #ifdef BOOST_MSVC
12 
13     #pragma warning (push)
14     #pragma warning (disable : 4512) // assignment operator could not be generated
15     #pragma warning (disable : 4127) // conditional expression is constant
16 
17     // temporary?
18     #pragma warning (disable : 4180) // qualifier applied to function type has no meaning
19 
20 #endif   //BOOST_MSVC
21 
22