summaryrefslogtreecommitdiff
path: root/sc/inc/sheetdata.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/sheetdata.hxx')
-rw-r--r--sc/inc/sheetdata.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/inc/sheetdata.hxx b/sc/inc/sheetdata.hxx
index de67786ff9fe..b4790684ba05 100644
--- a/sc/inc/sheetdata.hxx
+++ b/sc/inc/sheetdata.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.
@@ -31,7 +32,7 @@
#include <xmloff/maptype.hxx>
#include <editeng/editdata.hxx>
#include <vector>
-#include <hash_set>
+#include <boost/unordered_set.hpp>
#include "address.hxx"
@@ -113,7 +114,7 @@ struct ScLoadedNamespaceEntry
class ScSheetSaveData
{
- std::hash_set<rtl::OUString, rtl::OUStringHash> maInitialPrefixes;
+ boost::unordered_set<rtl::OUString, rtl::OUStringHash> maInitialPrefixes;
std::vector<ScLoadedNamespaceEntry> maLoadedNamespaces;
std::vector<ScCellStyleEntry> maCellStyles;
@@ -183,3 +184,4 @@ public:
#endif
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */