mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
Make clippy happy
This commit is contained in:
parent
b1ca307168
commit
9b2fc8e2a2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ fn lint_expr(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
||||||
"function pointer assumed to be nullable, even though it isn't",
|
"function pointer assumed to be nullable, even though it isn't",
|
||||||
None,
|
None,
|
||||||
"try wrapping your function pointer type in `Option<T>` instead, and using `is_none` to check for null pointer value",
|
"try wrapping your function pointer type in `Option<T>` instead, and using `is_none` to check for null pointer value",
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_fn_ptr_cast(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
fn is_fn_ptr_cast(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
||||||
|
|
Loading…
Reference in a new issue