From 9757b9e44c1603a4c84b9a0f526b6d367e3abd9a Mon Sep 17 00:00:00 2001 From: E Kawashima Date: Mon, 7 Nov 2016 21:35:44 +0900 Subject: [PATCH] fix comments about boost::detail::vector_matrix --- include/boost/graph/exterior_property.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/boost/graph/exterior_property.hpp b/include/boost/graph/exterior_property.hpp index af6df818..f920939f 100644 --- a/include/boost/graph/exterior_property.hpp +++ b/include/boost/graph/exterior_property.hpp @@ -14,8 +14,7 @@ namespace boost { namespace detail { // The vector matrix provides a little abstraction over vector - // types that makes matrices easier to work with. Note that it's - // non-copyable, meaning you should be passing it by value. + // types that makes matrices easier to work with. template struct vector_matrix { @@ -28,7 +27,7 @@ namespace detail { typedef container_type* pointer; typedef typename matrix_type::size_type size_type; - // Instantiate the matrix over n elements (creates an nxn matrix). + // Instantiate the matrix over n elements (creates an n by n matrix). // The graph has to be passed in order to ensure the index maps // are constructed correctly when returning indexible elements. inline vector_matrix(size_type n)