summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cache.h b/cache.h
index 9582c75..635d206 100644
--- a/cache.h
+++ b/cache.h
@@ -1,5 +1,5 @@
/*
- * $Id: cache.h,v 1.5 2005/01/28 21:26:34 lordjaxom Exp $
+ * $Id: cache.h,v 1.6 2005/01/28 23:46:05 lordjaxom Exp $
*/
#ifndef VDR_TEXT2SKIN_CACHE_HPP
@@ -96,7 +96,7 @@ data_type &cxCache<key_type, data_type>::operator[](const key_type &Key)
mItems.erase(it);
}
- it = mItems.insert(item_map::value_type(Key, data_type())).first;
+ it = mItems.insert(typename item_map::value_type(Key, data_type())).first;
return it->second;
}