From 1654aaa24e66fabac060e56541e1bdb81a433a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20M=2E=20L=C3=B3pez=20Mu=C3=B1oz?= Date: Mon, 6 Feb 2006 14:37:39 +0000 Subject: [PATCH] missing const qualifier [SVN r32623] --- include/boost/multi_index/detail/value_compare.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/multi_index/detail/value_compare.hpp b/include/boost/multi_index/detail/value_compare.hpp index 18513c3..a55046d 100644 --- a/include/boost/multi_index/detail/value_compare.hpp +++ b/include/boost/multi_index/detail/value_compare.hpp @@ -33,7 +33,7 @@ struct value_comparison:std::binary_function bool operator()( typename call_traits::param_type x, - typename call_traits::param_type y) + typename call_traits::param_type y)const { return comp(key(x),key(y)); }