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 e1a0086 commit ad01306Copy full SHA for ad01306
objdiff-core/src/arch/ppc/mod.rs
@@ -3,6 +3,7 @@ use alloc::{
3
string::{String, ToString},
4
vec,
5
vec::Vec,
6
+ boxed::Box,
7
};
8
9
use anyhow::{Result, bail, ensure};
objdiff-core/src/obj/mod.rs
@@ -238,7 +238,7 @@ pub enum FlowAnalysisValue {
238
Text(String),
239
}
240
241
-pub trait FlowAnalysisResult : std::fmt::Debug + Send {
+pub trait FlowAnalysisResult : core::fmt::Debug + Send {
242
fn get_argument_value_at_address(&self, address: u64, argument: u8) -> Option<&FlowAnalysisValue>;
243
244
0 commit comments