diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-04 18:56:37 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-04 18:56:37 -0400 |
| commit | ba2c1d6d20c9b9afe67a46120969a05672be76cd (patch) | |
| tree | f3965b53a754bc04846df24090430a778e6a32a4 /objc_darwin.go | |
| parent | bf1e7aae4217eae5556e7dee7445baa34e0430c7 (diff) | |
Removed objc_msgSend_uint().
Diffstat (limited to 'objc_darwin.go')
| -rw-r--r-- | objc_darwin.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/objc_darwin.go b/objc_darwin.go index dce8c0f..9ad554d 100644 --- a/objc_darwin.go +++ b/objc_darwin.go @@ -66,10 +66,6 @@ func objc_msgSend_rect(obj C.id, sel C.SEL, x int, y int, w int, h int) C.id { C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h)) } -func objc_msgSend_uint(obj C.id, sel C.SEL, a uintptr) C.id { - return C._objc_msgSend_uint(obj, sel, C.uintptr_t(a)) -} - func objc_msgSend_rect_bool(obj C.id, sel C.SEL, x int, y int, w int, h int, b C.BOOL) C.id { return C._objc_msgSend_rect_bool(obj, sel, C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h), |
