mirror of https://github.com/CGAL/cgal
use boost/serialization/static_warning.hpp with boost>=1.40.0, instead of
the deprecated boost/static_warning.hpp
This commit is contained in:
parent
e75225cecb
commit
e1645c0446
|
|
@ -24,7 +24,14 @@
|
|||
#define CGAL_BIGFLOAT_INTERVAL_TRAITS_H
|
||||
|
||||
#include<CGAL/basic.h>
|
||||
#include <boost/static_warning.hpp>
|
||||
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 104000
|
||||
# include <boost/serialization/static_warning.hpp>
|
||||
#else
|
||||
# include <boost/static_warning.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/static_assert.hpp>
|
||||
CGAL_BEGIN_NAMESPACE
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue