summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-15 22:31:33 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-15 21:50:23 +0000
commit013d9789c753d46f0a038e54db6e21f4d4922891 (patch)
tree52480d6515d2def1f568a2f6023ee0799cd9b2af /binaryurp
parentd007cef2dfd0c4d7b009b4f943464c6c4854d88d (diff)
Drop :: prefix from std in [a-b]*/
Change-Id: I0422aaf39bbce889c95ed9a81a0784cb03a1badd Reviewed-on: https://gerrit.libreoffice.org/34320 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/cache.hxx2
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_;