From: Nico Weber Date: Mon, 22 Nov 2010 10:26:41 +0000 (+0000) Subject: Minor whitespace fix, no functionality change X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59b173d81b05b7d10cec8b06b3fd843230ef628c;p=clang Minor whitespace fix, no functionality change git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119965 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Rewrite/RewriteObjC.cpp b/lib/Rewrite/RewriteObjC.cpp index 0f58a9ee0c..1ecde6a7fa 100644 --- a/lib/Rewrite/RewriteObjC.cpp +++ b/lib/Rewrite/RewriteObjC.cpp @@ -33,14 +33,14 @@ using llvm::utostr; namespace { class RewriteObjC : public ASTConsumer { enum { - BLOCK_FIELD_IS_OBJECT = 3, /* id, NSObject, __attribute__((NSObject)), + BLOCK_FIELD_IS_OBJECT = 3, /* id, NSObject, __attribute__((NSObject)), block, ... */ BLOCK_FIELD_IS_BLOCK = 7, /* a block variable */ BLOCK_FIELD_IS_BYREF = 8, /* the on stack structure holding the __block variable */ - BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy + BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy helpers */ - BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose + BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose support routines */ BLOCK_BYREF_CURRENT_MAX = 256 };