mirror of
https://github.com/boostorg/graph.git
synced 2026-02-10 23:42:14 +00:00
changed to use vertex_property and edge_property traits classes
[SVN r10185]
This commit is contained in:
@@ -314,7 +314,7 @@ namespace boost {
|
||||
}
|
||||
G g;
|
||||
typename graph_traits<G>::vertex_descriptor v;
|
||||
typename G::vertex_property_type vp;
|
||||
typename vertex_property<G>::type vp;
|
||||
};
|
||||
|
||||
template <class G>
|
||||
@@ -328,7 +328,7 @@ namespace boost {
|
||||
G g;
|
||||
std::pair<edge_descriptor, bool> p;
|
||||
typename graph_traits<G>::vertex_descriptor u, v;
|
||||
typename G::edge_property_type ep;
|
||||
typename edge_property<G>::type ep;
|
||||
};
|
||||
|
||||
template <class G>
|
||||
|
||||
Reference in New Issue
Block a user