summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-28 23:46:05 +0000
committerlordjaxom <lordjaxom>2005-01-28 23:46:05 +0000
commitc17888ca4acf6b6084d0dee983c63acd9ebd76eb (patch)
treea3d8b5b94816de7fa73824bef4ff3b6fb39c414a
parentc5a641a335f198435cd84f0e5e45dbab94089a81 (diff)
downloadvdr-plugin-text2skin-c17888ca4acf6b6084d0dee983c63acd9ebd76eb.tar.gz
vdr-plugin-text2skin-c17888ca4acf6b6084d0dee983c63acd9ebd76eb.tar.bz2
- another compiler fix
-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;
}