diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:22:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-03 21:11:20 +0000 |
commit | 79f115b91e5ad4d9038e127bf0b57843e157eac9 (patch) | |
tree | 704dee023dca3144f78613c41ba528ed65b1d80f /sc/inc/chart2uno.hxx | |
parent | 05dcb073d60579a142e3074fb1b137f36840ee9e (diff) |
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sc/inc/chart2uno.hxx')
-rw-r--r-- | sc/inc/chart2uno.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/chart2uno.hxx b/sc/inc/chart2uno.hxx index ab0b7baff280..f42f9bae5e8d 100644 --- a/sc/inc/chart2uno.hxx +++ b/sc/inc/chart2uno.hxx @@ -49,9 +49,9 @@ #include <svl/itemprop.hxx> #include <list> +#include <unordered_set> #include <vector> #include <boost/shared_ptr.hpp> -#include <boost/unordered_set.hpp> #include <boost/noncopyable.hpp> #include <boost/scoped_ptr.hpp> @@ -383,14 +383,14 @@ private: virtual void notify(sal_uInt16 nFileId, ScExternalRefManager::LinkUpdateType eType) SAL_OVERRIDE; void addFileId(sal_uInt16 nFileId); void removeFileId(sal_uInt16 nFileId); - const ::boost::unordered_set<sal_uInt16>& getAllFileIds() { return maFileIds;} + const std::unordered_set<sal_uInt16>& getAllFileIds() { return maFileIds;} private: ExternalRefListener(); ExternalRefListener(const ExternalRefListener& r); ScChart2DataSequence& mrParent; - ::boost::unordered_set<sal_uInt16> maFileIds; + std::unordered_set<sal_uInt16> maFileIds; ScDocument* mpDoc; }; |