summaryrefslogtreecommitdiff
path: root/vcl/inc/osx/saldata.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/osx/saldata.hxx')
-rw-r--r--vcl/inc/osx/saldata.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/vcl/inc/osx/saldata.hxx b/vcl/inc/osx/saldata.hxx
index b32d67b737c7..1ea8074e9b38 100644
--- a/vcl/inc/osx/saldata.hxx
+++ b/vcl/inc/osx/saldata.hxx
@@ -33,8 +33,7 @@
#include "svdata.hxx"
#include "salwtype.hxx"
-#include <boost/functional/hash.hpp>
-
+#include <functional>
#include <list>
#include <map>
#include <unordered_set>
@@ -56,10 +55,10 @@ class SystemFontList;
#define SAL_CLIPRECT_COUNT 16
class AquaSalFrame;
-struct FrameHash : public boost::hash<sal_IntPtr>
+struct FrameHash : public std::hash<sal_IntPtr>
{
size_t operator()(const AquaSalFrame* frame) const
- { return boost::hash<sal_IntPtr>::operator()( reinterpret_cast<const sal_IntPtr>(frame) ); }
+ { return std::hash<sal_IntPtr>::operator()( reinterpret_cast<const sal_IntPtr>(frame) ); }
};
#define INVALID_CURSOR_PTR reinterpret_cast<NSCursor*>(0xdeadbeef)