forked from OSchip/llvm-project
[Static Analyzer] Fixed a typo in a diagnostic message.
llvm-svn: 247444
This commit is contained in:
parent
a2d1d699d8
commit
17dacc401c
|
|
@ -99,7 +99,7 @@ const char *const ErrorMessages[] = {
|
||||||
"Nullable pointer is returned from a function that is expected to return a "
|
"Nullable pointer is returned from a function that is expected to return a "
|
||||||
"non-null value",
|
"non-null value",
|
||||||
"Nullable pointer is dereferenced",
|
"Nullable pointer is dereferenced",
|
||||||
"Nullable pointer is passed to a calle that requires a non-null argument"};
|
"Nullable pointer is passed to a callee that requires a non-null argument"};
|
||||||
|
|
||||||
class NullabilityChecker
|
class NullabilityChecker
|
||||||
: public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>,
|
: public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue