null_halfedge is not a type

This commit is contained in:
Jane Tournois 2015-03-12 14:19:11 +01:00
parent eec0d93a2f
commit 803c16d3e0
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ bool
is_isolated(typename boost::graph_traits<Graph>::vertex_descriptor v,
Graph& g)
{
return halfedge(v, g) == typename boost::graph_traits<Graph>::null_halfedge();
return halfedge(v, g) == boost::graph_traits<Graph>::null_halfedge();
}
template<typename Graph>