2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-03 09:12:14 +00:00

changed to use get() function

[SVN r9853]
This commit is contained in:
Jeremy Siek
2001-04-21 21:28:38 +00:00
parent ca5c8ad7f0
commit e80eb85175

View File

@@ -56,7 +56,7 @@ namespace boost {
template <class A, class B>
inline bool
operator()(const A& u, const B& v) const {
T du = d[u], dv = d[v];
T du = get(d, u), dv = get(d, v);
return cmp(du, dv);
}
protected: