Skip to content

Commit 2391548

Browse files
committed
fix clippy lints
1 parent f35cae1 commit 2391548

10 files changed

+11
-11
lines changed

.cargo/config.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ rustflags = [
55
"-Drust_2018_idioms",
66

77
"-Wmissing_docs",
8+
"-Wunexpected_cfgs",
89
"-Wunsafe_op_in_unsafe_fn",
910

1011
"-Wclippy::dbg_macro",
@@ -20,7 +21,6 @@ rustflags = [
2021
"-Wclippy::macro_use_imports",
2122
"-Wclippy::map_flatten",
2223
"-Wclippy::match_on_vec_items",
23-
"-Wclippy::mismatched_target_os",
2424
"-Wclippy::needless_borrow",
2525
"-Wclippy::needless_continue",
2626
"-Wclippy::option_option",
@@ -31,7 +31,7 @@ rustflags = [
3131
"-Wclippy::verbose_file_reads",
3232
# "-Wclippy::unused_self", # might be interesting to explore this...
3333

34-
# deny exlicit panic paths
34+
# deny explicit panic paths
3535
"-Wclippy::panic",
3636
"-Wclippy::todo",
3737
"-Wclippy::unimplemented",

examples/armv4t/mem_sniffer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ macro_rules! impl_memsniff_w {
6666
};
6767
}
6868

69-
impl<'a, M: Memory, F: FnMut(Access)> Memory for MemSniffer<'a, M, F> {
69+
impl<M: Memory, F: FnMut(Access)> Memory for MemSniffer<'_, M, F> {
7070
impl_memsniff_r!(r8, u8);
7171
impl_memsniff_r!(r16, u16);
7272
impl_memsniff_r!(r32, u32);

examples/armv4t_multicore/mem_sniffer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ macro_rules! impl_memsniff_w {
6868
};
6969
}
7070

71-
impl<'a, M: Memory, F: FnMut(Access)> Memory for MemSniffer<'a, M, F> {
71+
impl<M: Memory, F: FnMut(Access)> Memory for MemSniffer<'_, M, F> {
7272
impl_memsniff_r!(r8, u8);
7373
impl_memsniff_r!(r16, u16);
7474
impl_memsniff_r!(r32, u32);

src/protocol/commands/_qXfer_auxv_read.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub type qXferAuxvRead<'a> = QXferReadBase<'a, AuxvAnnex>;
77
#[derive(Debug)]
88
pub struct AuxvAnnex;
99

10-
impl<'a> ParseAnnex<'a> for AuxvAnnex {
10+
impl ParseAnnex<'_> for AuxvAnnex {
1111
#[inline(always)]
1212
fn from_buf(buf: &[u8]) -> Option<Self> {
1313
if buf != b"" {

src/protocol/commands/_qXfer_exec_file.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct ExecFileAnnex {
1010
pub pid: Option<Pid>,
1111
}
1212

13-
impl<'a> ParseAnnex<'a> for ExecFileAnnex {
13+
impl ParseAnnex<'_> for ExecFileAnnex {
1414
#[inline(always)]
1515
fn from_buf(buf: &[u8]) -> Option<Self> {
1616
let pid = match buf {

src/protocol/commands/_qXfer_libraries_svr4_read.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub type qXferLibrariesSvr4Read<'a> = QXferReadBase<'a, LibrariesSvr4Annex>;
66
#[derive(Debug)]
77
pub struct LibrariesSvr4Annex;
88

9-
impl<'a> ParseAnnex<'a> for LibrariesSvr4Annex {
9+
impl ParseAnnex<'_> for LibrariesSvr4Annex {
1010
#[inline(always)]
1111
fn from_buf(buf: &[u8]) -> Option<Self> {
1212
if buf != b"" {

src/protocol/commands/_qXfer_memory_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub type qXferMemoryMapRead<'a> = QXferReadBase<'a, MemoryMapAnnex>;
77
#[derive(Debug)]
88
pub struct MemoryMapAnnex;
99

10-
impl<'a> ParseAnnex<'a> for MemoryMapAnnex {
10+
impl ParseAnnex<'_> for MemoryMapAnnex {
1111
#[inline(always)]
1212
fn from_buf(buf: &[u8]) -> Option<Self> {
1313
if buf != b"" {

src/protocol/commands/_vCont.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ pub enum VContKind<'a> {
150150
Stop,
151151
}
152152

153-
impl<'a> VContKind<'a> {
153+
impl VContKind<'_> {
154154
#[inline(always)]
155155
fn from_bytes(s: &[u8]) -> Option<VContKind<'_>> {
156156
use self::VContKind::*;

src/protocol/console_output.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub struct ConsoleOutput<'a> {
2424
callback: &'a mut dyn FnMut(&[u8]),
2525
}
2626

27-
impl<'a> fmt::Write for ConsoleOutput<'a> {
27+
impl fmt::Write for ConsoleOutput<'_> {
2828
fn write_str(&mut self, s: &str) -> fmt::Result {
2929
self.write_raw(s.as_bytes());
3030
Ok(())

src/stub/state_machine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub struct GdbStubStateMachineInner<'a, S, T: Target, C: Connection> {
180180
}
181181

182182
/// Methods which can be called regardless of the current state.
183-
impl<'a, S, T: Target, C: Connection> GdbStubStateMachineInner<'a, S, T, C> {
183+
impl<S, T: Target, C: Connection> GdbStubStateMachineInner<'_, S, T, C> {
184184
/// Return a mutable reference to the underlying connection.
185185
pub fn borrow_conn(&mut self) -> &mut C {
186186
&mut self.i.conn

0 commit comments

Comments
 (0)