Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64030 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2010-07-14 19:56:50


Author: jewillco
Date: 2010-07-14 19:56:49 EDT (Wed, 14 Jul 2010)
New Revision: 64030
URL: http://svn.boost.org/trac/boost/changeset/64030

Log:
Fixed more detail::override_const_property calls
Text files modified:
   trunk/boost/graph/astar_search.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/graph/astar_search.hpp
==============================================================================
--- trunk/boost/graph/astar_search.hpp (original)
+++ trunk/boost/graph/astar_search.hpp 2010-07-14 19:56:49 EDT (Wed, 14 Jul 2010)
@@ -332,8 +332,8 @@
        arg_pack[_predecessor_map | dummy_property_map()],
        detail::make_property_map_from_arg_pack_gen<tag::rank_map, D>(D())(g, arg_pack),
        detail::make_property_map_from_arg_pack_gen<tag::distance_map, W>(W())(g, arg_pack),
- override_const_property(arg_pack, _weight_map, g, edge_weight),
- override_const_property(arg_pack, _vertex_index_map, g, vertex_index),
+ detail::override_const_property(arg_pack, _weight_map, g, edge_weight),
+ detail::override_const_property(arg_pack, _vertex_index_map, g, vertex_index),
        detail::make_color_map_from_arg_pack(g, arg_pack),
        arg_pack[_distance_compare | std::less<D>()],
        arg_pack[_distance_combine | closed_plus<D>()],


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