You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"remove_vertex is not supported with vecS label storage: erasing from the underlying vector invalidates all label-to-vertex mappings after the erased position"
@@ -642,6 +649,13 @@ class labeled_graph< Graph*, Label, Selector >
642
649
/** Remove the vertex with the given label. */
643
650
voidremove_vertex(Label const& l)
644
651
{
652
+
BOOST_STATIC_ASSERT(
653
+
!is_same<
654
+
typename container_traits<map_type>::category,
655
+
vector_tag
656
+
>::value,
657
+
"remove_vertex is not supported with vecS label storage: erasing from the underlying vector invalidates all label-to-vertex mappings after the erased position"
0 commit comments