From 689724052c92667d8994faeeeeee5a2b6e433755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 9 Nov 2018 13:08:57 +0100 Subject: [PATCH] Fixed containers return types --- BGL/doc/BGL/Concepts/EdgeListGraph.h | 2 +- BGL/doc/BGL/Concepts/VertexListGraph.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BGL/doc/BGL/Concepts/EdgeListGraph.h b/BGL/doc/BGL/Concepts/EdgeListGraph.h index 7d7980aa172..3de2fd15a6b 100644 --- a/BGL/doc/BGL/Concepts/EdgeListGraph.h +++ b/BGL/doc/BGL/Concepts/EdgeListGraph.h @@ -33,7 +33,7 @@ edges(const EdgeListGraph& g); This is the case for implementations only marking edges deleted in the edge container. */ template -boost::graph_traits::ver_size_type +boost::graph_traits::edges_size_type num_edges(const EdgeListGraph& g); diff --git a/BGL/doc/BGL/Concepts/VertexListGraph.h b/BGL/doc/BGL/Concepts/VertexListGraph.h index e24f6c55404..6d58aa3bfc3 100644 --- a/BGL/doc/BGL/Concepts/VertexListGraph.h +++ b/BGL/doc/BGL/Concepts/VertexListGraph.h @@ -33,6 +33,6 @@ vertices(const VertexListGraph& g); This is the case for implementations only marking vertices deleted in the vertex container. */ template -boost::graph_traits::ver_size_type +boost::graph_traits::vertices_size_type num_vertices(const VertexListGraph& g);