linting
This commit is contained in:
parent
a94ee22d14
commit
9959cf2e7d
|
@ -5,8 +5,6 @@ use std::sync::atomic::{AtomicU32, Ordering};
|
|||
use std::sync::Arc;
|
||||
use std::time::{Duration, Instant};
|
||||
|
||||
use num_cpus;
|
||||
|
||||
use ppc750cl::Ins;
|
||||
use std::ops::Range;
|
||||
|
||||
|
|
|
@ -1401,7 +1401,8 @@ impl Ins {
|
|||
Opcode::Sync => "sync",
|
||||
Opcode::Tlbsync => "tlbsync",
|
||||
_ => disasm_unreachable!(self.code),
|
||||
}.to_owned();
|
||||
}
|
||||
.to_owned();
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
@ -2305,6 +2306,7 @@ impl ToString for Ins {
|
|||
}
|
||||
|
||||
#[cfg(test)]
|
||||
#[allow(clippy::unusual_byte_groupings, clippy::bool_assert_comparison)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
|
|
Loading…
Reference in New Issue