mirror of https://github.com/CGAL/cgal
Add parameterization
This commit is contained in:
parent
7e720deef4
commit
7c207526f8
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue