diff options
author | culler <culler> | 2020-05-16 17:56:24 (GMT) |
---|---|---|
committer | culler <culler> | 2020-05-16 17:56:24 (GMT) |
commit | 5b8151f29ca6b12d3421c026eae1a994e702f7b5 (patch) | |
tree | e838e2463d61a0ae09e2bd13df04b1b54cf575e5 /macosx/tkMacOSXPrivate.h | |
parent | dc8dcbced6e03edb40b76e2108e6a4ecf6ff37fd (diff) | |
download | tk-5b8151f29ca6b12d3421c026eae1a994e702f7b5.zip tk-5b8151f29ca6b12d3421c026eae1a994e702f7b5.tar.gz tk-5b8151f29ca6b12d3421c026eae1a994e702f7b5.tar.bz2 |
Fix compiler errors and warnings on macOS 10.6 (Snow Leopard)
Diffstat (limited to 'macosx/tkMacOSXPrivate.h')
-rw-r--r-- | macosx/tkMacOSXPrivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h index b5b93d5..861f4e6 100644 --- a/macosx/tkMacOSXPrivate.h +++ b/macosx/tkMacOSXPrivate.h @@ -19,6 +19,10 @@ #error Objective-C compiler required #endif +#ifndef __clang__ +#define instancetype id +#endif + #define TextStyle MacTextStyle #import <ApplicationServices/ApplicationServices.h> #import <Cocoa/Cocoa.h> |