The same for Point Set Processing

This commit is contained in:
Andreas Fabri 2022-05-04 17:00:19 +01:00
parent e7132912ba
commit 7e720deef4
1 changed files with 14 additions and 1 deletions

View File

@ -32,11 +32,24 @@
#include <climits>
#include <math.h>
#if defined(BOOST_MSVC)
# pragma warning(push)
# pragma warning(disable:4172) // Address warning inside boost named parameters
#endif
#include <CGAL/property_map.h>
#include <boost/graph/adjacency_list.hpp>
#include <CGAL/boost/graph/dijkstra_shortest_paths.h> // work around a bug in boost 1.54
#include <CGAL/boost/graph/dijkstra_shortest_paths.h> // work around a
// bug in boost
// 1.54
#include <boost/graph/prim_minimum_spanning_tree.hpp>
#if defined(BOOST_MSVC)
# pragma warning(pop)
#endif
namespace CGAL {