summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 14:09:33 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 14:09:33 +0000
commitd2b09d173e1cd82bdd063d4151f00e614e12a347 (patch)
tree2f9dfd9cbf3618c234e0c554890fc52c6e78fd55 /stoc
parent64a1e537fcd5ca80694b73bef7b68e56fb28f582 (diff)
INTEGRATION: CWS gcc340fixes01 (1.2.28); FILE MERGED
2004/07/13 12:54:02 hr 1.2.28.1: #i31424#: insert typename
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/security/lru_cache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h
index a3f88b092..29e9472aa 100644
--- a/stoc/source/security/lru_cache.h
+++ b/stoc/source/security/lru_cache.h
@@ -2,9 +2,9 @@
*
* $RCSfile: lru_cache.h,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2004-02-04 14:31:18 $
+ * last change: $Author: kz $ $Date: 2004-07-30 15:09:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -271,7 +271,7 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::set(
m_key2element.erase( entry->m_key );
entry->m_key = key;
::std::pair< typename t_key2element::iterator, bool > insertion(
- m_key2element.insert( t_key2element::value_type( key, entry ) ) );
+ m_key2element.insert( typename t_key2element::value_type( key, entry ) ) );
#ifdef __CACHE_DIAGNOSE
OSL_ENSURE( insertion.second, "### inserting new cache entry failed?!" );
#endif