Skip to content

Commit b0e4eeb

Browse files
authored
Merge pull request CGAL#6556 from afabri/BGL-suppress_boost_warning-GF
BGL: Suppress warning in boost
2 parents b9fabbe + bb364cf commit b0e4eeb

File tree

20 files changed

+137
-17
lines changed

20 files changed

+137
-17
lines changed

Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_dual_adapter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
#include <CGAL/config.h>
55

6-
#include <boost/graph/breadth_first_search.hpp>
6+
#include <CGAL/boost/graph/breadth_first_search.h>
7+
78
#include <boost/graph/visitors.hpp>
89

910
#include <CGAL/Arr_extended_dcel.h>

Arrangement_on_surface_2/examples/Arrangement_on_surface_2/bgl_primal_adapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include <CGAL/config.h>
77

8-
#include <boost/graph/dijkstra_shortest_paths.hpp>
8+
#include <CGAL/boost/graph/dijkstra_shortest_paths.h>
99
#include <boost/property_map/vector_property_map.hpp>
1010

1111
#include <CGAL/graph_traits_Arrangement_2.h>

BGL/examples/BGL_LCC/distance_lcc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <CGAL/boost/graph/graph_traits_Linear_cell_complex_for_combinatorial_map.h>
44
#include <CGAL/boost/graph/IO/polygon_mesh_io.h>
55

6-
#include <boost/graph/breadth_first_search.hpp>
6+
#include <CGAL/boost/graph/breadth_first_search.h> // wrapper to suppress a warning
77

88
#include <fstream>
99

BGL/examples/BGL_LCC/kruskal_lcc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <iostream>
55
#include <list>
66

7-
#include <boost/graph/kruskal_min_spanning_tree.hpp>
7+
#include <CGAL/boost/graph/kruskal_min_spanning_tree.h>
88

99
typedef CGAL::Simple_cartesian<double> Kernel;
1010
typedef Kernel::Point_3 Point;

BGL/examples/BGL_arrangement_2/arrangement_dual.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <CGAL/Arr_face_index_map.h>
1111

1212
#include <climits>
13-
#include <boost/graph/breadth_first_search.hpp>
13+
#include <CGAL/boost/graph/breadth_first_search.h>
1414
#include <boost/graph/visitors.hpp>
1515

1616
#include "arr_print.h"

BGL/examples/BGL_polyhedron_3/distance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <CGAL/Polyhedron_3.h>
33
#include <CGAL/Polyhedron_items_with_id_3.h>
44

5-
#include <boost/graph/breadth_first_search.hpp>
5+
#include <CGAL/boost/graph/breadth_first_search.h>
66

77
#include <fstream>
88

BGL/examples/BGL_polyhedron_3/kruskal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <iostream>
55
#include <list>
66

7-
#include <boost/graph/kruskal_min_spanning_tree.hpp>
7+
#include <CGAL/boost/graph/kruskal_min_spanning_tree.h>
88

99

1010
typedef CGAL::Simple_cartesian<double> Kernel;

BGL/examples/BGL_polyhedron_3/kruskal_with_stored_id.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <iostream>
66
#include <list>
77

8-
#include <boost/graph/kruskal_min_spanning_tree.hpp>
8+
#include <CGAL/boost/graph/kruskal_min_spanning_tree.h>
99

1010
typedef CGAL::Simple_cartesian<double> Kernel;
1111
typedef Kernel::Point_3 Point;

BGL/examples/BGL_surface_mesh/prim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <iostream>
55
#include <fstream>
66

7-
#include <boost/graph/prim_minimum_spanning_tree.hpp>
7+
#include <CGAL/boost/graph/prim_minimum_spanning_tree.h>
88

99
typedef CGAL::Simple_cartesian<double> Kernel;
1010
typedef Kernel::Point_3 Point;

BGL/examples/BGL_triangulation_2/emst.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <CGAL/Delaunay_triangulation_2.h>
44
#include <CGAL/boost/graph/graph_traits_Delaunay_triangulation_2.h>
55

6-
#include <boost/graph/kruskal_min_spanning_tree.hpp>
6+
#include <CGAL/boost/graph/kruskal_min_spanning_tree.h>
77

88
#include <fstream>
99
#include <iostream>

0 commit comments

Comments
 (0)