@@ -7,7 +7,7 @@ use crate::{
7
7
} ;
8
8
9
9
declare_lint ! {
10
- /// The `drop_ref ` lint checks for calls to `std::mem::drop` with a reference
10
+ /// The `dropping_references ` lint checks for calls to `std::mem::drop` with a reference
11
11
/// instead of an owned value.
12
12
///
13
13
/// ### Example
@@ -29,13 +29,13 @@ declare_lint! {
29
29
/// reference itself, which is a no-op. It will not call the `drop` method (from
30
30
/// the `Drop` trait implementation) on the underlying referenced value, which
31
31
/// is likely what was intended.
32
- pub DROP_REF ,
32
+ pub DROPPING_REFERENCES ,
33
33
Warn ,
34
34
"calls to `std::mem::drop` with a reference instead of an owned value"
35
35
}
36
36
37
37
declare_lint ! {
38
- /// The `forget_ref ` lint checks for calls to `std::mem::forget` with a reference
38
+ /// The `forgetting_references ` lint checks for calls to `std::mem::forget` with a reference
39
39
/// instead of an owned value.
40
40
///
41
41
/// ### Example
@@ -52,13 +52,13 @@ declare_lint! {
52
52
/// Calling `forget` on a reference will only forget the
53
53
/// reference itself, which is a no-op. It will not forget the underlying
54
54
/// referenced value, which is likely what was intended.
55
- pub FORGET_REF ,
55
+ pub FORGETTING_REFERENCES ,
56
56
Warn ,
57
57
"calls to `std::mem::forget` with a reference instead of an owned value"
58
58
}
59
59
60
60
declare_lint ! {
61
- /// The `drop_copy ` lint checks for calls to `std::mem::drop` with a value
61
+ /// The `dropping_copy_types ` lint checks for calls to `std::mem::drop` with a value
62
62
/// that derives the Copy trait.
63
63
///
64
64
/// ### Example
@@ -76,13 +76,13 @@ declare_lint! {
76
76
/// Calling `std::mem::drop` [does nothing for types that
77
77
/// implement Copy](https://doc.rust-lang.org/std/mem/fn.drop.html), since the
78
78
/// value will be copied and moved into the function on invocation.
79
- pub DROP_COPY ,
79
+ pub DROPPING_COPY_TYPES ,
80
80
Warn ,
81
81
"calls to `std::mem::drop` with a value that implements Copy"
82
82
}
83
83
84
84
declare_lint ! {
85
- /// The `forget_copy ` lint checks for calls to `std::mem::forget` with a value
85
+ /// The `forgetting_copy_types ` lint checks for calls to `std::mem::forget` with a value
86
86
/// that derives the Copy trait.
87
87
///
88
88
/// ### Example
@@ -104,12 +104,12 @@ declare_lint! {
104
104
/// An alternative, but also valid, explanation is that Copy types do not
105
105
/// implement the Drop trait, which means they have no destructors. Without a
106
106
/// destructor, there is nothing for `std::mem::forget` to ignore.
107
- pub FORGET_COPY ,
107
+ pub FORGETTING_COPY_TYPES ,
108
108
Warn ,
109
109
"calls to `std::mem::forget` with a value that implements Copy"
110
110
}
111
111
112
- declare_lint_pass ! ( DropForgetUseless => [ DROP_REF , FORGET_REF , DROP_COPY , FORGET_COPY ] ) ;
112
+ declare_lint_pass ! ( DropForgetUseless => [ DROPPING_REFERENCES , FORGETTING_REFERENCES , DROPPING_COPY_TYPES , FORGETTING_COPY_TYPES ] ) ;
113
113
114
114
impl < ' tcx > LateLintPass < ' tcx > for DropForgetUseless {
115
115
fn check_expr ( & mut self , cx : & LateContext < ' tcx > , expr : & ' tcx Expr < ' tcx > ) {
@@ -123,16 +123,16 @@ impl<'tcx> LateLintPass<'tcx> for DropForgetUseless {
123
123
let drop_is_single_call_in_arm = is_single_call_in_arm ( cx, arg, expr) ;
124
124
match fn_name {
125
125
sym:: mem_drop if arg_ty. is_ref ( ) && !drop_is_single_call_in_arm => {
126
- cx. emit_spanned_lint ( DROP_REF , expr. span , DropRefDiag { arg_ty, label : arg. span } ) ;
126
+ cx. emit_spanned_lint ( DROPPING_REFERENCES , expr. span , DropRefDiag { arg_ty, label : arg. span } ) ;
127
127
} ,
128
128
sym:: mem_forget if arg_ty. is_ref ( ) => {
129
- cx. emit_spanned_lint ( FORGET_REF , expr. span , ForgetRefDiag { arg_ty, label : arg. span } ) ;
129
+ cx. emit_spanned_lint ( FORGETTING_REFERENCES , expr. span , ForgetRefDiag { arg_ty, label : arg. span } ) ;
130
130
} ,
131
131
sym:: mem_drop if is_copy && !drop_is_single_call_in_arm => {
132
- cx. emit_spanned_lint ( DROP_COPY , expr. span , DropCopyDiag { arg_ty, label : arg. span } ) ;
132
+ cx. emit_spanned_lint ( DROPPING_COPY_TYPES , expr. span , DropCopyDiag { arg_ty, label : arg. span } ) ;
133
133
}
134
134
sym:: mem_forget if is_copy => {
135
- cx. emit_spanned_lint ( FORGET_COPY , expr. span , ForgetCopyDiag { arg_ty, label : arg. span } ) ;
135
+ cx. emit_spanned_lint ( FORGETTING_COPY_TYPES , expr. span , ForgetCopyDiag { arg_ty, label : arg. span } ) ;
136
136
}
137
137
_ => return ,
138
138
} ;
0 commit comments