summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExprObjC.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-12-10 22:22:45 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-12-10 22:22:45 +0000
commitb899a11878a7f1dcf5d21f9fcefabe611f508f29 (patch)
tree9ce89ae38419e49e481fe7b2e740fdf698842c11 /lib/Sema/SemaExprObjC.cpp
parenta3da97b0d48923534e301e8f1b072cfdf7f11c47 (diff)
downloadclang-b899a11878a7f1dcf5d21f9fcefabe611f508f29.tar.gz
clang-b899a11878a7f1dcf5d21f9fcefabe611f508f29.tar.bz2
clang-b899a11878a7f1dcf5d21f9fcefabe611f508f29.tar.xz
Objective-C. Minor change to a diagnostic.
// rdar://15499111 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaExprObjC.cpp')
-rw-r--r--lib/Sema/SemaExprObjC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaExprObjC.cpp b/lib/Sema/SemaExprObjC.cpp
index 960700bd5c..aeb934c381 100644
--- a/lib/Sema/SemaExprObjC.cpp
+++ b/lib/Sema/SemaExprObjC.cpp
@@ -3460,7 +3460,7 @@ Sema::CheckObjCBridgeRelatedConversions(SourceLocation Loc,
}
else
Diag(Loc, diag::err_objc_bridged_related_unknown_method)
- << SrcType << DestType << false;
+ << SrcType << DestType;
Diag(RelatedClass->getLocStart(), diag::note_declared_at);
Diag(TDNDecl->getLocStart(), diag::note_declared_at);
}
@@ -3480,7 +3480,7 @@ Sema::CheckObjCBridgeRelatedConversions(SourceLocation Loc,
}
else
Diag(Loc, diag::err_objc_bridged_related_unknown_method)
- << SrcType << DestType << true;
+ << SrcType << DestType;
Diag(RelatedClass->getLocStart(), diag::note_declared_at);
Diag(TDNDecl->getLocStart(), diag::note_declared_at);
}