Skip to content

Commit ad01306

Browse files
committed
Probably last wasm fix
1 parent e1a0086 commit ad01306

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

objdiff-core/src/arch/ppc/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use alloc::{
33
string::{String, ToString},
44
vec,
55
vec::Vec,
6+
boxed::Box,
67
};
78

89
use anyhow::{Result, bail, ensure};

objdiff-core/src/obj/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ pub enum FlowAnalysisValue {
238238
Text(String),
239239
}
240240

241-
pub trait FlowAnalysisResult : std::fmt::Debug + Send {
241+
pub trait FlowAnalysisResult : core::fmt::Debug + Send {
242242
fn get_argument_value_at_address(&self, address: u64, argument: u8) -> Option<&FlowAnalysisValue>;
243243
}
244244

0 commit comments

Comments
 (0)