summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/recovery/subcomponents.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/recovery/subcomponents.hxx')
-rw-r--r--dbaccess/source/core/recovery/subcomponents.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/dbaccess/source/core/recovery/subcomponents.hxx b/dbaccess/source/core/recovery/subcomponents.hxx
index 65a837355..43b7fa8cb 100644
--- a/dbaccess/source/core/recovery/subcomponents.hxx
+++ b/dbaccess/source/core/recovery/subcomponents.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.
*
@@ -34,7 +35,7 @@
#include <rtl/ustring.hxx>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#include <map>
//........................................................................
@@ -77,7 +78,7 @@ namespace dbaccess
};
// -------------------------------------------------------------------
- typedef ::std::hash_map< ::rtl::OUString, SubComponentDescriptor, ::rtl::OUStringHash > MapStringToCompDesc;
+ typedef ::boost::unordered_map< ::rtl::OUString, SubComponentDescriptor, ::rtl::OUStringHash > MapStringToCompDesc;
typedef ::std::map< SubComponentType, MapStringToCompDesc > MapCompTypeToCompDescs;
@@ -86,3 +87,5 @@ namespace dbaccess
//........................................................................
#endif // SUBCOMPONENTS_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */