diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-30 19:26:58 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-30 19:26:58 +0000 |
commit | 9413dc04ffce6a617f9acc62a05f6dde82fc6e5f (patch) | |
tree | 12df49a7ae05bb5a534d6d932fb702c42da50d24 | |
parent | 2fa9d72d4d23ccdcd4137946e5ebafac7a04f04c (diff) |
Fix missing 'clang' in pragma example in ARC doc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162933 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/AutomaticReferenceCounting.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/AutomaticReferenceCounting.html b/docs/AutomaticReferenceCounting.html index 5cacbd5e3d..5354f8af34 100644 --- a/docs/AutomaticReferenceCounting.html +++ b/docs/AutomaticReferenceCounting.html @@ -1904,9 +1904,9 @@ and <tt>cf_unknown_transfer</tt>.</p> <p>A pragma is provided to facilitate the mass annotation of interfaces:</p> -<pre>#pragma arc_cf_code_audited begin +<pre>#pragma clang arc_cf_code_audited begin ... -#pragma arc_cf_code_audited end</pre> +#pragma clang arc_cf_code_audited end</pre> <p>All C functions declared within the extent of this pragma are treated as if annotated with the <tt>cf_audited_transfer</tt> |