mirror of https://github.com/CGAL/cgal
Fix for Windows 'min/max' bug
This commit is contained in:
parent
5e3416b4e8
commit
f1ab3edb2d
|
|
@ -305,7 +305,7 @@ public:
|
||||||
void init_dfs()
|
void init_dfs()
|
||||||
{
|
{
|
||||||
cur_mark++;
|
cur_mark++;
|
||||||
if (cur_mark == std::numeric_limits<size_type>::max()) init_vertex_marks();
|
if (cur_mark == (std::numeric_limits<size_type>::max)()) init_vertex_marks();
|
||||||
}
|
}
|
||||||
|
|
||||||
void mark_vertex(Vertex_handle vh)
|
void mark_vertex(Vertex_handle vh)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue