Skip to content

Commit 07a01c7

Browse files
committed
Cargo fmt
1 parent 0971cda commit 07a01c7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/util/alloc/bumpallocator.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,11 @@ impl<VM: VMBinding> BumpAllocator<VM> {
194194
offset: usize,
195195
stress_test: bool,
196196
) -> Address {
197-
if self
198-
.space
199-
.handle_obvious_oom_request(self.tls, size, !self.get_context().is_no_gc_on_fail())
200-
{
197+
if self.space.handle_obvious_oom_request(
198+
self.tls,
199+
size,
200+
!self.get_context().is_no_gc_on_fail(),
201+
) {
201202
return Address::ZERO;
202203
}
203204

0 commit comments

Comments
 (0)