diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-04 20:20:21 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-04 20:20:26 +0000 |
commit | 547b472d5b81ef7f22c32b089bd9f42f721c1cbf (patch) | |
tree | ea29806dcea876d2f7a5ae170a1424e3818e74ac /vcl/inc/osx/saldata.hxx | |
parent | 42a4de0941a6a19c52384e3a5897134dcfebe3f8 (diff) |
vcl/osx boost::unordered_map->std::unordered_map
Change-Id: I00dabf3307734e319a8187df111e1065ea383524
Diffstat (limited to 'vcl/inc/osx/saldata.hxx')
-rw-r--r-- | vcl/inc/osx/saldata.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/osx/saldata.hxx b/vcl/inc/osx/saldata.hxx index 86667acbe1cd..4ac39dd960d3 100644 --- a/vcl/inc/osx/saldata.hxx +++ b/vcl/inc/osx/saldata.hxx @@ -34,9 +34,9 @@ #include "salwtype.hxx" #include <list> -#include <vector> #include <map> -#include <boost/unordered_set.hpp> +#include <unordered_set> +#include <vector> #include <cstdio> #include <cstdarg> @@ -70,7 +70,7 @@ public: SALTIMERPROC mpTimerProc; // timer callback proc AquaSalInstance *mpFirstInstance; // pointer of first instance std::list<AquaSalFrame*> maFrames; // list of all frames - boost::unordered_set<const AquaSalFrame*,FrameHash> maFrameCheck; // for fast check of frame existence + std::unordered_set<const AquaSalFrame*,FrameHash> maFrameCheck;// for fast check of frame existence std::list<AquaSalFrame*> maPresentationFrames; // list of frames in presentation mode SalObject *mpFirstObject; // pointer of first object window SalVirtualDevice *mpFirstVD; // first VirDev |