Warning fix

This commit is contained in:
Alex Zolotarev 2011-08-15 19:00:03 +03:00 committed by Alex Zolotarev
parent 97e23ead86
commit a12af9410b

View file

@ -10,7 +10,7 @@ namespace my
template <typename TValue>
struct MRUCacheValueTraits
{
static void Evict(TValue & val){}
static void Evict(TValue &){}
};
template <typename KeyT, typename ValueT, typename ValueTraitsT = MRUCacheValueTraits<ValueT> >