diff options
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/cache.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/cache.hxx b/binaryurp/source/cache.hxx index 9bd87898c528..009886eb8f38 100644 --- a/binaryurp/source/cache.hxx +++ b/binaryurp/source/cache.hxx @@ -86,7 +86,7 @@ private: typedef std::list<T> LruList; // last recently used list typedef typename LruList::iterator LruListIt; struct CmpT{ bool operator()( const LruListIt& rA, const LruListIt& rB) const { return (*rA<*rB);}}; - typedef ::std::map< LruListIt, IdxType, CmpT > LruItMap; // a map into a LruList + typedef std::map< LruListIt, IdxType, CmpT > LruItMap; // a map into a LruList std::size_t size_; LruItMap map_; |