Changeset 7fb5d7 for src/graph/graph_properties.cc
- Timestamp:
- 08/21/09 15:43:19 (4 years ago)
- Branches:
- master, python3
- Children:
- a35d46
- Parents:
- a89e06
- git-author:
- Tiago de Paula Peixoto <tiago@…> (08/21/09 11:39:56)
- git-committer:
- Tiago de Paula Peixoto <tiago@…> (08/21/09 15:43:19)
- File:
-
- 1 edited
-
src/graph/graph_properties.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/graph/graph_properties.cc
re984bf r7fb5d7 21 21 #include "graph_util.hh" 22 22 23 #include <boost/lambda/bind.hpp>24 23 #include <boost/mpl/for_each.hpp> 25 24 26 25 using namespace std; 27 26 using namespace boost; 28 using namespace boost::lambda;29 27 using namespace graph_tool; 30 28 … … 62 60 bool found = false; 63 61 mpl::for_each<writable_vertex_properties> 64 ( lambda::bind<void>(shift_vertex_property(), _1, var(_mg),65 prop, index, var(found)));62 (bind<void>(shift_vertex_property(), _1, ref(_mg), 63 prop, index, ref(found))); 66 64 if (!found) 67 65 throw GraphException("invalid writable property map");
Note: See TracChangeset
for help on using the changeset viewer.


