[cfe-commits] r43778 - in /cfe/trunk: AST/Decl.cpp Driver/ASTConsumers.cpp Parse/ParseObjc.cpp Sema/Sema.h Sema/SemaDecl.cpp include/clang/AST/Decl.h include/clang/AST/DeclObjC.h include/clang/Parse/Action.h include/clang/Parse/DeclSpec.h include/clang/Parse/Parser.h

Chris Lattner clattner at apple.com
Tue Nov 6 20:38:14 PST 2007


On Nov 6, 2007, at 2:01 PM, Fariborz Jahanian wrote:

> +class ObjcPropertyDecl : public Decl {
> +public:
> +  enum PrpoertyAttributeKind { OBJC_PR_noattr = 0x0,
> +                       OBJC_PR_readonly = 0x01,
> +                       OBJC_PR_getter = 0x02,
> +                       OBJC_PR_assign = 0x04,
> +                       OBJC_PR_readwrite = 0x08,
> +                       OBJC_PR_retain = 0x10,
> +                       OBJC_PR_copy = 0x20,
> +                       OBJC_PR_nonatomic = 0x40,
> +                       OBJC_PR_setter = 0x80 };

Hi Fariborz: PrpoertyAttributeKind -> PropertyAttributeKind

-Chris



More information about the cfe-commits mailing list