From c17888ca4acf6b6084d0dee983c63acd9ebd76eb Mon Sep 17 00:00:00 2001 From: lordjaxom Date: Fri, 28 Jan 2005 23:46:05 +0000 Subject: - another compiler fix --- cache.h | 4 ++-- 1 file 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::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; } -- cgit v1.2.3