diff --git a/docs/adjacency_list.html b/docs/adjacency_list.html index bf6f751f..9ccd1cf1 100644 --- a/docs/adjacency_list.html +++ b/docs/adjacency_list.html @@ -889,14 +889,13 @@ This sets the property value for x to value. x is either a vertex or edge descriptor. Value must be convertible to typename property_traits<property_map<adjacency_list, Property>::type>::value_type -

-  template <class GraphProperties, class GraphProperty>
-  typename property_value<GraphProperties, GraphProperty>::type&
-  get_property(adjacency_list& g, GraphProperty);
+template <class GraphProperties, class GraphProperty>
+typename property_value<GraphProperties, GraphProperty>::type&
+get_property(adjacency_list& g, GraphProperty);
 
Return the property specified by GraphProperty that is attached to the graph object g. @@ -904,9 +903,9 @@ attached to the graph object g.
-  template <class GraphProperties, class GraphProperty>
-  const typename property_value<GraphProperties, GraphProperty>::type&
-  get_property(const adjacency_list& g, GraphProperty);
+template <class GraphProperties, class GraphProperty>
+const typename property_value<GraphProperties, GraphProperty>::type&
+get_property(const adjacency_list& g, GraphProperty);
 
Return the property specified by GraphProperty that is attached to the graph object g.