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 | 06be9689424283c143959c0f4659d6b5da22f67d (patch) | |
| tree | df6a55c24847b569d362890dac712f0165cad63d /clang/lib/AST | |
| parent | ba1e267a4cd2b78a6d564f4fe54d1c18600ada2d (diff) | |
| download | bcm5719-llvm-06be9689424283c143959c0f4659d6b5da22f67d.tar.gz bcm5719-llvm-06be9689424283c143959c0f4659d6b5da22f67d.zip  | |
Add IBAction attribute to keep the IBOutlet attribute company.
llvm-svn: 96447
Diffstat (limited to 'clang/lib/AST')
| -rw-r--r-- | clang/lib/AST/AttrImpl.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/AST/AttrImpl.cpp b/clang/lib/AST/AttrImpl.cpp index d81979734b3..dd6e3564a50 100644 --- a/clang/lib/AST/AttrImpl.cpp +++ b/clang/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;  }  | 

