From: David Chisnall Date: Thu, 7 Jul 2011 09:49:59 +0000 (+0000) Subject: Fix example: variable is initialized to 10 and then has 11 stored in it, but in the... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cfe1f051915bc159cda244c8d08ea6fcca605de4;p=clang Fix example: variable is initialized to 10 and then has 11 stored in it, but in the expanded version is initialized to 11. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134610 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/Block-ABI-Apple.txt b/docs/Block-ABI-Apple.txt index 4a97aa9bd6..8e67f01a44 100644 --- a/docs/Block-ABI-Apple.txt +++ b/docs/Block-ABI-Apple.txt @@ -317,7 +317,7 @@ would be rewritten to be: int flags; //refcount; int size; int captured_i; - } i = { NULL, &i, 0, sizeof(struct _block_byref_i), 11 }; + } i = { NULL, &i, 0, sizeof(struct _block_byref_i), 10 }; i.forwarding->captured_i = 11;