use boost/serialization/static_warning.hpp with boost>=1.40.0, instead of

the deprecated boost/static_warning.hpp
This commit is contained in:
Luis Peñaranda 2010-02-22 10:20:33 +00:00
parent e75225cecb
commit e1645c0446
1 changed files with 8 additions and 1 deletions

View File

@ -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