mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
style: remove dbg!
call
This commit is contained in:
parent
b280dbe5f7
commit
b485832b16
2 changed files with 1 additions and 7 deletions
|
@ -71,9 +71,7 @@ fn is_an_instant(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
|||
let expr_ty = cx.typeck_results().expr_ty(expr);
|
||||
|
||||
match expr_ty.kind() {
|
||||
rustc_middle::ty::Adt(def, _) => {
|
||||
clippy_utils::match_def_path(cx, dbg!(def).did(), &clippy_utils::paths::INSTANT)
|
||||
},
|
||||
rustc_middle::ty::Adt(def, _) => clippy_utils::match_def_path(cx, def.did(), &clippy_utils::paths::INSTANT),
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
[clippy_lints/src/unchecked_duration_subtraction.rs:75] def = std::time::Instant
|
||||
error: unchecked subtraction of a 'Duration' from an 'Instant'
|
||||
--> $DIR/unchecked_duration_subtraction.rs:9:13
|
||||
|
|
||||
|
@ -7,21 +6,18 @@ LL | let _ = _first - second;
|
|||
|
|
||||
= note: `-D clippy::unchecked-duration-subtraction` implied by `-D warnings`
|
||||
|
||||
[clippy_lints/src/unchecked_duration_subtraction.rs:75] def = std::time::Instant
|
||||
error: unchecked subtraction of a 'Duration' from an 'Instant'
|
||||
--> $DIR/unchecked_duration_subtraction.rs:11:13
|
||||
|
|
||||
LL | let _ = Instant::now() - Duration::from_secs(5);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Instant::now().checked_sub(Duration::from_secs(5)).unwrap();`
|
||||
|
||||
[clippy_lints/src/unchecked_duration_subtraction.rs:75] def = std::time::Instant
|
||||
error: unchecked subtraction of a 'Duration' from an 'Instant'
|
||||
--> $DIR/unchecked_duration_subtraction.rs:13:13
|
||||
|
|
||||
LL | let _ = _first - Duration::from_secs(5);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `_first.checked_sub(Duration::from_secs(5)).unwrap();`
|
||||
|
||||
[clippy_lints/src/unchecked_duration_subtraction.rs:75] def = std::time::Instant
|
||||
error: unchecked subtraction of a 'Duration' from an 'Instant'
|
||||
--> $DIR/unchecked_duration_subtraction.rs:15:13
|
||||
|
|
||||
|
|
Loading…
Reference in a new issue