Skip to content

Commit 391cb19

Browse files
committed
Formatting again
1 parent 61820cb commit 391cb19

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

objdiff-core/src/obj/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,7 @@ impl Object {
328328
self.symbols.iter().position(|symbol| symbol.section.is_some() && symbol.name == name)
329329
}
330330

331-
pub fn get_flow_analysis_result(
332-
&self,
333-
symbol: &Symbol,
334-
) -> Option<&dyn FlowAnalysisResult> {
331+
pub fn get_flow_analysis_result(&self, symbol: &Symbol) -> Option<&dyn FlowAnalysisResult> {
335332
let key = symbol.section.unwrap_or_default() as u64 + symbol.address;
336333
self.flow_analysis_results.get(&key).map(|result| result.as_ref())
337334
}

0 commit comments

Comments
 (0)