Remove redundant includes.

This commit is contained in:
Marc Glisse 2018-11-07 14:19:39 +01:00
parent 0211ca58c7
commit 455d93def3
2 changed files with 14 additions and 13 deletions

View File

@ -28,11 +28,11 @@
#ifdef CGAL_USE_BOOST_MP #ifdef CGAL_USE_BOOST_MP
#include <boost/multiprecision/cpp_int.hpp> //Currently already included in boost_mp.h
#ifdef CGAL_USE_GMP //#include <boost/multiprecision/cpp_int.hpp>
#include <CGAL/gmp.h> //#ifdef CGAL_USE_GMP
#include <boost/multiprecision/gmp.hpp> //#include <boost/multiprecision/gmp.hpp>
#endif //#endif
// FIXME: the could be several kernels based on Boost.Multiprecision. // FIXME: the could be several kernels based on Boost.Multiprecision.

View File

@ -41,14 +41,15 @@
#include <CGAL/QP_models.h> #include <CGAL/QP_models.h>
#include <CGAL/QP_functions.h> #include <CGAL/QP_functions.h>
#ifdef CGAL_USE_BOOST_MP #include <CGAL/boost_mp.h>
# include <boost/multiprecision/cpp_int.hpp> //Currently already included in boost_mp.h
// After some CGAL includes so we get a chance to define CGAL_USE_GMP. //#ifdef CGAL_USE_BOOST_MP
# ifdef CGAL_USE_GMP //# include <boost/multiprecision/cpp_int.hpp>
# include <CGAL/gmp.h> //// After some CGAL includes so we get a chance to define CGAL_USE_GMP.
# include <boost/multiprecision/gmp.hpp> //# ifdef CGAL_USE_GMP
# endif //# include <boost/multiprecision/gmp.hpp>
#endif //# endif
//#endif
// Routines to output to MPS format: // Routines to output to MPS format:
namespace QP_from_mps_detail { namespace QP_from_mps_detail {