Skip to content

Commit b005b1e

Browse files
committed
fmt
1 parent 224988b commit b005b1e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

jingle/src/context.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl ArchInfoProvider for JingleContext<'_> {
4141
}
4242

4343
fn get_registers(&self) -> impl Iterator<Item = (&VarNode, &str)> {
44-
self.info.registers.iter().map(|(a,b)| (a,b.as_str()))
44+
self.info.registers.iter().map(|(a, b)| (a, b.as_str()))
4545
}
4646
}
4747

@@ -67,7 +67,10 @@ impl<'ctx> JingleContext<'ctx> {
6767
z3,
6868
info: CachedArchInfo {
6969
spaces: r.get_all_space_info().cloned().collect(),
70-
registers: r.get_registers().map(|(a,b)|(a.clone(),b.to_string())).collect(),
70+
registers: r
71+
.get_registers()
72+
.map(|(a, b)| (a.clone(), b.to_string()))
73+
.collect(),
7174
default_code_space: r.get_code_space_idx(),
7275
},
7376
}))

0 commit comments

Comments
 (0)