Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r54412 - trunk/boost/graph
From: ngedmond_at_[hidden]
Date: 2009-06-27 15:37:07


Author: ngedmond
Date: 2009-06-27 15:37:06 EDT (Sat, 27 Jun 2009)
New Revision: 54412
URL: http://svn.boost.org/trac/boost/changeset/54412

Log:
Changed default VertexProperty and EdgeProperty from void to no_property so that indexed_edge_property doesn't try to form references to void.

refs #3134

Text files modified:
   trunk/boost/graph/compressed_sparse_row_graph.hpp | 4 ++--
   1 files changed, 2 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-06-27 15:37:06 EDT (Sat, 27 Jun 2009)
@@ -184,8 +184,8 @@
  * specialize numeric_limits.
  */
 template<typename Directed = directedS,
- typename VertexProperty = void,
- typename EdgeProperty = void,
+ typename VertexProperty = no_property,
+ typename EdgeProperty = no_property,
          typename GraphProperty = no_property,
          typename Vertex = std::size_t,
          typename EdgeIndex = Vertex>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk