$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80216 - trunk/libs/graph/doc
From: jewillco_at_[hidden]
Date: 2012-08-25 16:45:30
Author: jewillco
Date: 2012-08-25 16:45:29 EDT (Sat, 25 Aug 2012)
New Revision: 80216
URL: http://svn.boost.org/trac/boost/changeset/80216
Log:
Fixed default template arguments
Text files modified: 
   trunk/libs/graph/doc/compressed_sparse_row.html |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/graph/doc/compressed_sparse_row.html
==============================================================================
--- trunk/libs/graph/doc/compressed_sparse_row.html	(original)
+++ trunk/libs/graph/doc/compressed_sparse_row.html	2012-08-25 16:45:29 EDT (Sat, 25 Aug 2012)
@@ -101,8 +101,8 @@
     <pre>
 namespace boost {
 
-template<typename Directed = directedS, typename VertexProperty = void, 
-         typename EdgeProperty = void, typename GraphProperty = no_property, 
+template<typename Directed = directedS, typename VertexProperty = no_property, 
+         typename EdgeProperty = no_property, typename GraphProperty = no_property, 
          typename Vertex = std::size_t, typename EdgeIndex = Vertex>
 class compressed_sparse_row_graph
 {