Skip to content

Commit 0773d72

Browse files
committed
fmt
1 parent a4e3485 commit 0773d72

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/describe/abi.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ impl<T> Deref for Vec<T> {
3232

3333
impl<T> Drop for Vec<T> {
3434
fn drop(&mut self) {
35-
unsafe { let _ = Box::from_raw(std::ptr::slice_from_raw_parts_mut(self.ptr, self.len)); };
35+
unsafe {
36+
let _ = Box::from_raw(std::ptr::slice_from_raw_parts_mut(self.ptr, self.len));
37+
};
3638
}
3739
}
3840

0 commit comments

Comments
 (0)