$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56658 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2009-10-08 15:42:53
Author: jewillco
Date: 2009-10-08 15:42:53 EDT (Thu, 08 Oct 2009)
New Revision: 56658
URL: http://svn.boost.org/trac/boost/changeset/56658
Log:
Fixed duplicate base class problem
Text files modified:
trunk/boost/graph/compressed_sparse_row_graph.hpp | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
Modified: trunk/boost/graph/compressed_sparse_row_graph.hpp
==============================================================================
--- trunk/boost/graph/compressed_sparse_row_graph.hpp (original)
+++ trunk/boost/graph/compressed_sparse_row_graph.hpp 2009-10-08 15:42:53 EDT (Thu, 08 Oct 2009)
@@ -807,8 +807,7 @@
typedef bidirectional_tag directed_category;
typedef allow_parallel_edge_tag edge_parallel_category;
- class traversal_category: public incidence_graph_tag,
- public bidirectional_graph_tag,
+ class traversal_category: public bidirectional_graph_tag,
public adjacency_graph_tag,
public vertex_list_graph_tag,
public edge_list_graph_tag {};