forked from OSchip/llvm-project
[Static Analyzer] Fixed a typo in a diagnostic message.
llvm-svn: 245949
This commit is contained in:
parent
5bf2d613c9
commit
3240cd3421
|
@ -128,7 +128,7 @@ PathDiagnosticPiece *ObjCGenericsChecker::GenericsBugVisitor::VisitNode(
|
|||
llvm::raw_svector_ostream OS(Buf);
|
||||
OS << "Type '";
|
||||
QualType::print(*TrackedType, Qualifiers(), OS, LangOpts, llvm::Twine());
|
||||
OS << "' is infered from ";
|
||||
OS << "' is inferred from ";
|
||||
|
||||
if (const auto *ExplicitCast = dyn_cast<ExplicitCastExpr>(S)) {
|
||||
OS << "explicit cast (from '";
|
||||
|
|
Loading…
Reference in New Issue