From c51af6ce4c609bc3181ad8c28bad8af168db49db Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Tue, 12 Jul 2011 20:34:06 +0000 Subject: [PATCH] Fix another typo (int -> id for captured_obj). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134998 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Block-ABI-Apple.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Block-ABI-Apple.txt b/docs/Block-ABI-Apple.txt index 8e67f01a44..661ed50594 100644 --- a/docs/Block-ABI-Apple.txt +++ b/docs/Block-ABI-Apple.txt @@ -476,7 +476,7 @@ struct _block_byref_obj { int size; void (*byref_keep)(struct _block_byref_i *dst, struct _block_byref_i *src); void (*byref_dispose)(struct _block_byref_i *); - int captured_obj; + id captured_obj; }; void _block_byref_obj_keep(struct _block_byref_voidBlock *dst, struct _block_byref_voidBlock *src) { -- 2.50.1