missing const qualifier

[SVN r32623]
This commit is contained in:
Joaquín M. López Muñoz 2006-02-06 14:37:39 +00:00
parent 4797a93e7b
commit 1654aaa24e

View File

@ -33,7 +33,7 @@ struct value_comparison:std::binary_function<Value,Value,bool>
bool operator()(
typename call_traits<Value>::param_type x,
typename call_traits<Value>::param_type y)
typename call_traits<Value>::param_type y)const
{
return comp(key(x),key(y));
}