diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-05 12:39:27 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-05 12:39:27 -0400 |
| commit | 338cbc0540c810dec2b32bae39f7d367b2d73396 (patch) | |
| tree | fb2f34f91b46b9c950d451246a99accad434cfb7 /objc_darwin.go | |
| parent | b97e6b864f2bb6c3ffbc12cba81f3be250f48d92 (diff) | |
Removed NilClass from the shared Mac OS X files (objc_darwin.h and bleh_darwin.m) as the //export issue that required that no longer applies.
Diffstat (limited to 'objc_darwin.go')
| -rw-r--r-- | objc_darwin.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/objc_darwin.go b/objc_darwin.go index 70406f5..d7e8f7a 100644 --- a/objc_darwin.go +++ b/objc_darwin.go @@ -10,6 +10,8 @@ import ( // #cgo LDFLAGS: -lobjc -framework Foundation // #include <stdlib.h> // #include "objc_darwin.h" +// /* cgo doesn't like Nil */ +// Class NilClass = Nil; import "C" func objc_getClass(class string) C.id { |
