Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56300 - trunk/boost/graph/detail
From: jewillco_at_[hidden]
Date: 2009-09-18 16:11:51


Author: jewillco
Date: 2009-09-18 16:11:50 EDT (Fri, 18 Sep 2009)
New Revision: 56300
URL: http://svn.boost.org/trac/boost/changeset/56300

Log:
Fixed name qualification problem
Text files modified:
   trunk/boost/graph/detail/compressed_sparse_row_struct.hpp | 16 ++++++++--------
   1 files changed, 8 insertions(+), 8 deletions(-)

Modified: trunk/boost/graph/detail/compressed_sparse_row_struct.hpp
==============================================================================
--- trunk/boost/graph/detail/compressed_sparse_row_struct.hpp (original)
+++ trunk/boost/graph/detail/compressed_sparse_row_struct.hpp 2009-09-18 16:11:50 EDT (Fri, 18 Sep 2009)
@@ -115,14 +115,14 @@
 
       boost::graph::detail::count_starts
         (sources_begin, sources_end, m_rowstart.begin(), numlocalverts,
- source_pred, make_property_map_function(global_to_local));
+ source_pred, boost::make_property_map_function(global_to_local));
 
       m_column.resize(m_rowstart.back());
 
       boost::graph::detail::histogram_sort
         (sources_begin, sources_end, m_rowstart.begin(), numlocalverts,
          targets_begin, m_column.begin(),
- source_pred, make_property_map_function(global_to_local));
+ source_pred, boost::make_property_map_function(global_to_local));
     }
 
     // Rebuild graph from number of vertices and multi-pass unsorted list of
@@ -148,7 +148,7 @@
 
       boost::graph::detail::count_starts
         (sources_begin, sources_end, m_rowstart.begin(), numlocalverts,
- source_pred, make_property_map_function(global_to_local));
+ source_pred, boost::make_property_map_function(global_to_local));
 
       m_column.resize(m_rowstart.back());
       inherited_edge_properties::resize(m_rowstart.back());
@@ -157,7 +157,7 @@
         (sources_begin, sources_end, m_rowstart.begin(), numlocalverts,
          targets_begin, m_column.begin(),
          ep_iter, inherited_edge_properties::begin(),
- source_pred, make_property_map_function(global_to_local));
+ source_pred, boost::make_property_map_function(global_to_local));
     }
 
     // Assign from number of vertices and sorted list of edges
@@ -249,10 +249,10 @@
       m_rowstart.resize(numverts + 1);
       boost::graph::detail::count_starts
         (sources.begin(), sources.end(), m_rowstart.begin(), numverts,
- keep_all(), make_property_map_function(global_to_local));
+ keep_all(), boost::make_property_map_function(global_to_local));
       boost::graph::detail::histogram_sort_inplace
         (sources.begin(), sources.end(), m_rowstart.begin(), numverts,
- targets.begin(), make_property_map_function(global_to_local));
+ targets.begin(), boost::make_property_map_function(global_to_local));
       // Now targets is the correct vector (properly sorted by source) for
       // m_column
       m_column.swap(targets);
@@ -275,11 +275,11 @@
       m_rowstart.resize(numverts + 1);
       boost::graph::detail::count_starts
         (sources.begin(), sources.end(), m_rowstart.begin(), numverts,
- keep_all(), make_property_map_function(global_to_local));
+ keep_all(), boost::make_property_map_function(global_to_local));
       boost::graph::detail::histogram_sort_inplace
         (sources.begin(), sources.end(), m_rowstart.begin(), numverts,
          targets.begin(), edge_props.begin(),
- make_property_map_function(global_to_local));
+ boost::make_property_map_function(global_to_local));
       // Now targets is the correct vector (properly sorted by source) for
       // m_column, and edge_props for m_edge_properties
       m_column.swap(targets);


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