summaryrefslogtreecommitdiff
path: root/sw/inc/swwait.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 /sw/inc/swwait.hxx
parent05dcb073d60579a142e3074fb1b137f36840ee9e (diff)
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sw/inc/swwait.hxx')
-rw-r--r--sw/inc/swwait.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/swwait.hxx b/sw/inc/swwait.hxx
index ca5cad51fab4..71c25d7cc15d 100644
--- a/sw/inc/swwait.hxx
+++ b/sw/inc/swwait.hxx
@@ -22,7 +22,7 @@
#include <tools/solar.h>
#include "swdllapi.h"
-#include <boost/unordered_set.hpp>
+#include <unordered_set>
class SwDocShell;
class SfxDispatcher;
@@ -43,7 +43,7 @@ private:
SwDocShell& mrDoc;
const bool mbLockUnlockDispatcher;
- boost::unordered_set< SfxDispatcher* > mpLockedDispatchers;
+ std::unordered_set< SfxDispatcher* > mpLockedDispatchers;
};
#endif