summaryrefslogtreecommitdiff
path: root/rsc/inc/rschash.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/inc/rschash.hxx')
-rw-r--r--rsc/inc/rschash.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/rsc/inc/rschash.hxx b/rsc/inc/rschash.hxx
index bb8b4670b11b..dcba480ecd67 100644
--- a/rsc/inc/rschash.hxx
+++ b/rsc/inc/rschash.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -29,7 +30,7 @@
#include <sal/types.h>
#include <rtl/string.hxx>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
typedef sal_uInt32 Atom;
@@ -38,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();
@@ -52,3 +53,4 @@ class AtomContainer
#endif // _RSCHASH_HXX
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */