Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:47:58

0001 /*
0002   Copyright 2008 Intel Corporation
0003 
0004   Use, modification and distribution are subject to the Boost Software License,
0005   Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0006   http://www.boost.org/LICENSE_1_0.txt).
0007 */
0008 #ifndef BOOST_POLYGON_GTL_HPP
0009 #define BOOST_POLYGON_GTL_HPP
0010 
0011 #ifdef __ICC
0012 #pragma warning (push)
0013 #pragma warning (disable:1125)
0014 #endif
0015 
0016 #ifdef WIN32
0017 #pragma warning (push)
0018 #pragma warning( disable: 4996 )
0019 #pragma warning( disable: 4800 )
0020 #endif
0021 
0022 #define BOOST_POLYGON_NO_DEPS
0023 #include "polygon.hpp"
0024 namespace gtl = boost::polygon;
0025 using namespace boost::polygon::operators;
0026 
0027 #ifdef WIN32
0028 #pragma warning (pop)
0029 #endif
0030 
0031 #ifdef __ICC
0032 #pragma warning (pop)
0033 #endif
0034 
0035 #endif