mirror of https://github.com/CGAL/cgal
Fix warnings
This commit is contained in:
parent
47027d6f5b
commit
3350f9d05e
|
|
@ -261,7 +261,8 @@ public:
|
||||||
inserted_vertices[vertex_i]);
|
inserted_vertices[vertex_i]);
|
||||||
if(std::size_t(get (vertex_label_map, vd)) != alpha
|
if(std::size_t(get (vertex_label_map, vd)) != alpha
|
||||||
&& color == ColorTraits::white()) //new comers (expansion occurs)
|
&& color == ColorTraits::white()) //new comers (expansion occurs)
|
||||||
put (vertex_label_map, vd, alpha);
|
put (vertex_label_map, vd,
|
||||||
|
static_cast<typename boost::property_traits<VertexLabelMap>::value_type>(alpha));
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_edge (Vertex_descriptor& v1, Vertex_descriptor& v2, double w1, double w2)
|
void add_edge (Vertex_descriptor& v1, Vertex_descriptor& v2, double w1, double w2)
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ namespace CGAL {
|
||||||
class Default_diagonalize_traits;
|
class Default_diagonalize_traits;
|
||||||
class Eigen_svd;
|
class Eigen_svd;
|
||||||
class Lapack_svd;
|
class Lapack_svd;
|
||||||
class Alpha_expansion_boost_adjacency_list_tag;
|
struct Alpha_expansion_boost_adjacency_list_tag;
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue