Run rustfmt

This commit is contained in:
Alex Crichton
2020-03-04 10:36:26 -08:00
parent ca9f33b6d9
commit 8cee547519
6 changed files with 26 additions and 23 deletions

View File

@@ -8,7 +8,9 @@ pub struct HostMemory {
}
impl HostMemory {
pub fn new() -> Self {
HostMemory { buffer: UnsafeCell::new([0; 4096]) }
HostMemory {
buffer: UnsafeCell::new([0; 4096]),
}
}
pub fn mem_area_strat(align: u32) -> BoxedStrategy<MemArea> {