diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-01-28 20:13:44 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-01-28 20:13:44 +0000 |
commit | bde67cfdf05f7c569661e7a490b0b0811ac1ec56 (patch) | |
tree | 2c28f9ddc2082ab1819ada97a16063409ba5608c /lib/Sema/SemaDecl.cpp | |
parent | 4581d45405f07374770366be8644d52733985833 (diff) |
Undo my re-wording of the "ARC forbids Objective-C objects in ..."
error. Jordan is right.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index aa4a865344..fb63953de9 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -10516,7 +10516,7 @@ void Sema::ActOnFields(Scope* S, } } else { Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag) - << T->isBlockPointerType() << T << Record->getTagKind(); + << T->isBlockPointerType() << Record->getTagKind(); } ARCErrReported = true; } |