summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpshttab.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-02 16:22:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-03 21:11:20 +0000
commit79f115b91e5ad4d9038e127bf0b57843e157eac9 (patch)
tree704dee023dca3144f78613c41ba528ed65b1d80f /sc/inc/dpshttab.hxx
parentUse std::make_shared (diff)
downloadcore-79f115b91e5ad4d9038e127bf0b57843e157eac9.tar.gz
core-79f115b91e5ad4d9038e127bf0b57843e157eac9.zip
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sc/inc/dpshttab.hxx')
-rw-r--r--sc/inc/dpshttab.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/dpshttab.hxx b/sc/inc/dpshttab.hxx
index e591aaefd4d3..034d08213b96 100644
--- a/sc/inc/dpshttab.hxx
+++ b/sc/inc/dpshttab.hxx
@@ -26,7 +26,7 @@
#include "scdllapi.h"
#include "queryparam.hxx"
-#include <boost/unordered_set.hpp>
+#include <unordered_set>
#include <vector>
namespace com { namespace sun { namespace star { namespace sheet {
@@ -112,9 +112,9 @@ public:
virtual bool IsRepeatIfEmpty() SAL_OVERRIDE;
virtual void CreateCacheTable() SAL_OVERRIDE;
- virtual void FilterCacheTable(const ::std::vector<ScDPFilteredCache::Criterion>& rCriteria, const ::boost::unordered_set<sal_Int32>& rCatDims) SAL_OVERRIDE;
- virtual void GetDrillDownData(const ::std::vector<ScDPFilteredCache::Criterion>& rCriteria,
- const ::boost::unordered_set<sal_Int32>& rCatDims,
+ virtual void FilterCacheTable(const std::vector<ScDPFilteredCache::Criterion>& rCriteria, const std::unordered_set<sal_Int32>& rCatDims) SAL_OVERRIDE;
+ virtual void GetDrillDownData(const std::vector<ScDPFilteredCache::Criterion>& rCriteria,
+ const std::unordered_set<sal_Int32>& rCatDims,
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& rData) SAL_OVERRIDE;
virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow) SAL_OVERRIDE;
virtual const ScDPFilteredCache& GetCacheTable() const SAL_OVERRIDE;