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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user