diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-02-17 02:37:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-02-17 02:37:45 +0000 |
commit | efbddd23173ea5633cc8a004f1014c68c3ac6593 (patch) | |
tree | 90d3a87eab7cd5059cbb4904cc5cf4fd586cd874 /lib/AST/AttrImpl.cpp | |
parent | a446ecd13a9cd2c150baa5d3db4f817db4b1eba8 (diff) |
Add IBAction attribute to keep the IBOutlet attribute company.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/AttrImpl.cpp')
-rw-r--r-- | lib/AST/AttrImpl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/AST/AttrImpl.cpp b/lib/AST/AttrImpl.cpp index d81979734b..dd6e3564a5 100644 --- a/lib/AST/AttrImpl.cpp +++ b/lib/AST/AttrImpl.cpp @@ -139,6 +139,10 @@ Attr *IBOutletAttr::clone(ASTContext &C) const { return ::new (C) IBOutletAttr; } +Attr *IBActionAttr::clone(ASTContext &C) const { + return ::new (C) IBActionAttr; +} + Attr *GNUInlineAttr::clone(ASTContext &C) const { return ::new (C) GNUInlineAttr; } |