Skip to content

Commit 6dc8084

Browse files
committed
Remove another unnecessary lifetime
1 parent 746fbad commit 6dc8084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/missing_inline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn check_missing_inline_attrs(cx: &LateContext<'_, '_>, attrs: &[ast::Attribute]
6868
}
6969
}
7070

71-
fn is_executable<'a>(cx: &LateContext<'a, '_>) -> bool {
71+
fn is_executable(cx: &LateContext<'_, '_>) -> bool {
7272
use rustc::session::config::CrateType;
7373

7474
cx.tcx.sess.crate_types.get().iter().any(|t: &CrateType| match t {

0 commit comments

Comments
 (0)