summaryrefslogtreecommitdiff
path: root/vcl/osx
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2014-12-24 09:52:38 -0500
committerTor Lillqvist <tml@collabora.com>2015-01-01 07:38:10 +0200
commit2315a43bdf3707ac978802a36a4019d4f48ce0a6 (patch)
tree112537aead300128ea105e669d7e9827650a2554 /vcl/osx
parent24c52aaeb99984cc62c7235430a107d34e0d6e3b (diff)
get rid of obsolete code for 32-bit targets
fixes vcl/osx/a11ywrapper.mm:1037: error: ambiguous overload for 'operator<<' (operand types are 'std::basic_ostream<char>' and 'CGPoint') Change-Id: Iabf9a1e795c9fe89ff5d6ff379aa6a18dd7dbf65
Diffstat (limited to 'vcl/osx')
-rw-r--r--vcl/osx/a11ywrapper.mm11
1 files changed, 0 insertions, 11 deletions
diff --git a/vcl/osx/a11ywrapper.mm b/vcl/osx/a11ywrapper.mm
index 2ef107ecd65b..c50f4c1dd5cb 100644
--- a/vcl/osx/a11ywrapper.mm
+++ b/vcl/osx/a11ywrapper.mm
@@ -62,17 +62,6 @@ static std::ostream &operator<<(std::ostream &s, NSObject *obj) {
return s << [[obj description] UTF8String];
}
-#ifndef _LP64
-
-// In 64-bit code NSPoint == CGPoint, and CGPoint already has
-// an operator<< in vcl/inc/quartz/util.h
-
-static std::ostream &operator<<(std::ostream &s, NSPoint point) {
- return s << NSStringFromPoint(point);
-}
-
-#endif
-
@implementation AquaA11yWrapper : NSView
#pragma mark -