Add parameterization

This commit is contained in:
Andreas Fabri 2022-05-04 17:38:32 +01:00
parent 7e720deef4
commit 7c207526f8
2 changed files with 11 additions and 1 deletions

View File

@ -15,6 +15,16 @@
// This will push/pop a VC15 warning
#include <CGAL/Named_function_parameters.h>
#if defined(BOOST_MSVC)
# pragma warning(push)
# pragma warning(disable:4172) // Address warning inside boost named parameters
#endif
#include <boost/graph/dijkstra_shortest_paths.hpp>
#if defined(BOOST_MSVC)
# pragma warning(pop)
#endif
#endif // CGAL_BOOST_GRAPH_DIJKSTRA_SHORTEST_PATHS_H

View File

@ -18,7 +18,7 @@
#include <CGAL/assertions.h>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <CGAL/boost/graph/dijkstra_shortest_paths.h>
#include <boost/graph/graph_traits.hpp>
#include <unordered_map>