From e80eb85175fee451d29bb4dcebff971deac78d3e Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sat, 21 Apr 2001 21:28:38 +0000 Subject: [PATCH] changed to use get() function [SVN r9853] --- include/boost/pending/indirect_cmp.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/pending/indirect_cmp.hpp b/include/boost/pending/indirect_cmp.hpp index 071e41df..59c69856 100644 --- a/include/boost/pending/indirect_cmp.hpp +++ b/include/boost/pending/indirect_cmp.hpp @@ -56,7 +56,7 @@ namespace boost { template 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: