diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-17 20:23:12 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-17 20:23:12 +0000 |
commit | a8fb24fa3151567056f6125999cea69e39604f35 (patch) | |
tree | 0bc13f02fe5caf73dde05dbcad9b0b179bf8d2e2 /lib/AST/AttrImpl.cpp | |
parent | e638f86124c690f16e308f8d3822d15ebee6ecb5 (diff) |
Patch to add type parameter support for attribute iboutletcollection.
Radar 8308053.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/AttrImpl.cpp')
-rw-r--r-- | lib/AST/AttrImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/AttrImpl.cpp b/lib/AST/AttrImpl.cpp index dcd3c5bc43..994d45cf74 100644 --- a/lib/AST/AttrImpl.cpp +++ b/lib/AST/AttrImpl.cpp @@ -163,7 +163,7 @@ Attr *IBOutletAttr::clone(ASTContext &C) const { } Attr *IBOutletCollectionAttr::clone(ASTContext &C) const { - return ::new (C) IBOutletCollectionAttr(D); + return ::new (C) IBOutletCollectionAttr(QT); } Attr *IBActionAttr::clone(ASTContext &C) const { |