We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e3485 commit 0773d72Copy full SHA for 0773d72
src/describe/abi.rs
@@ -32,7 +32,9 @@ impl<T> Deref for Vec<T> {
32
33
impl<T> Drop for Vec<T> {
34
fn drop(&mut self) {
35
- unsafe { let _ = Box::from_raw(std::ptr::slice_from_raw_parts_mut(self.ptr, self.len)); };
+ unsafe {
36
+ let _ = Box::from_raw(std::ptr::slice_from_raw_parts_mut(self.ptr, self.len));
37
+ };
38
}
39
40
0 commit comments