diff options
author | Nikola Smiljanic <popizdeh@gmail.com> | 2014-05-29 14:05:12 +0000 |
---|---|---|
committer | Nikola Smiljanic <popizdeh@gmail.com> | 2014-05-29 14:05:12 +0000 |
commit | 03ff2596cb161e77af62a8046615a52d3183aa9e (patch) | |
tree | 416d5b983bb4d172c6ae8e6d1a5f9cdfbda66e04 /clang/lib/Sema/SemaObjCProperty.cpp | |
parent | ef5f26bf19a6e00be53ef29a48bc8e94adadbf9e (diff) | |
download | bcm5719-llvm-03ff2596cb161e77af62a8046615a52d3183aa9e.tar.gz bcm5719-llvm-03ff2596cb161e77af62a8046615a52d3183aa9e.zip |
Refactoring. Remove Owned method from Sema.
llvm-svn: 209812
Diffstat (limited to 'clang/lib/Sema/SemaObjCProperty.cpp')
-rw-r--r-- | clang/lib/Sema/SemaObjCProperty.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaObjCProperty.cpp b/clang/lib/Sema/SemaObjCProperty.cpp index 5dea07b71e7..8eb806ba301 100644 --- a/clang/lib/Sema/SemaObjCProperty.cpp +++ b/clang/lib/Sema/SemaObjCProperty.cpp @@ -1156,7 +1156,7 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S, InitializedEntity::InitializeResult(PropertyDiagLoc, getterMethod->getReturnType(), /*NRVO=*/false), - PropertyDiagLoc, Owned(IvarRefExpr)); + PropertyDiagLoc, IvarRefExpr); if (!Res.isInvalid()) { Expr *ResExpr = Res.getAs<Expr>(); if (ResExpr) |