summaryrefslogtreecommitdiff
path: root/rsc/inc
diff options
context:
space:
mode:
authorFridrich Strba <fridrich.strba@bluewin.ch>2011-02-03 16:55:17 -0700
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-04 01:10:15 +0100
commite99fcbe58ef7533da06ee4658a4ee2cde4df58ea (patch)
tree2dffe52eb92af74244d25f19613b1af187d9eab7 /rsc/inc
parentfad7c8f3e0d0518b1a6411d53d5d0a3a43adf119 (diff)
Bulk move libs-gui to boost unordered containers
Diffstat (limited to 'rsc/inc')
-rw-r--r--rsc/inc/rschash.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/inc/rschash.hxx b/rsc/inc/rschash.hxx
index 5d5f8ca73def..dcba480ecd67 100644
--- a/rsc/inc/rschash.hxx
+++ b/rsc/inc/rschash.hxx
@@ -30,7 +30,7 @@
#include <sal/types.h>
#include <rtl/string.hxx>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
typedef sal_uInt32 Atom;
@@ -39,8 +39,8 @@ typedef sal_uInt32 Atom;
class AtomContainer
{
Atom m_nNextID;
- std::hash_map< rtl::OString, Atom, rtl::OStringHash > m_aStringToID;
- std::hash_map< Atom, rtl::OString > m_aIDToString;
+ boost::unordered_map< rtl::OString, Atom, rtl::OStringHash > m_aStringToID;
+ boost::unordered_map< Atom, rtl::OString > m_aIDToString;
public:
AtomContainer();