code review: remove unsafe on borrow checker constructor

This commit is contained in:
Pat Hickey
2020-06-30 10:10:10 -07:00
parent 05201b514d
commit 5f5d7cb0f7
4 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ impl HostMemory {
buffer: HostBuffer {
cell: UnsafeCell::new([0; 4096]),
},
bc: unsafe { BorrowChecker::new() },
bc: BorrowChecker::new(),
}
}