We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc25cc6 commit 9d613d3Copy full SHA for 9d613d3
objdiff-core/src/arch/mod.rs
@@ -220,7 +220,7 @@ pub trait Arch: Send + Sync + Debug {
220
_relocations: &[Relocation],
221
_symbols: &[Symbol],
222
) -> Vec<Relocation> {
223
- vec![]
+ Vec::new()
224
}
225
226
fn implcit_addend(
objdiff-core/src/arch/ppc.rs
@@ -1,10 +1,9 @@
1
use alloc::{
2
- collections::BTreeMap,
+ collections::{BTreeMap, BTreeSet},
3
string::{String, ToString},
4
vec,
5
vec::Vec,
6
};
7
-use std::collections::BTreeSet;
8
9
use anyhow::{bail, ensure, Result};
10
use cwextab::{decode_extab, ExceptionTableData};
0 commit comments