Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:35:32

0001 // Boost.Geometry Index
0002 //
0003 // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
0004 //
0005 // Use, modification and distribution is subject to the Boost Software License,
0006 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 #include <boost/config.hpp>
0010 
0011 #ifdef BOOST_MSVC
0012 
0013     #pragma warning (push)
0014     #pragma warning (disable : 4512) // assignment operator could not be generated
0015     #pragma warning (disable : 4127) // conditional expression is constant
0016 
0017     // temporary?
0018     #pragma warning (disable : 4180) // qualifier applied to function type has no meaning
0019 
0020 #endif   //BOOST_MSVC
0021