fixing NullEvent usage

This commit is contained in:
Peter Schojer
2009-02-05 09:23:17 +00:00
parent 37dc590bdf
commit ad543acb58
9 changed files with 9 additions and 9 deletions

View File

@@ -58,7 +58,7 @@ class LRUCache: public AbstractCache<TKey, TValue, LRUStrategy<TKey, TValue>, TM
{
public:
LRUCache(long size = 1024):
AbstractCache<TKey, TValue, LRUStrategy<TKey, TValue> >(LRUStrategy<TKey, TValue>(size))
AbstractCache<TKey, TValue, LRUStrategy<TKey, TValue>, TMutex, TEventMutex>(LRUStrategy<TKey, TValue>(size))
{
}