summaryrefslogtreecommitdiff
path: root/stoc/source/security/lru_cache.h
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
commit3140045c7398d1f5332a6e149bc9ce701b47bd54 (patch)
tree2954fab2744bad2dbc1755574e5b94805d506389 /stoc/source/security/lru_cache.h
parentcf35b38539d468f4fcdcade6d553a59afbc27d7d (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/source/security/lru_cache.h')
-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 ef6e8c5dc517..d87f4d13e49c 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