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 2d768e3 commit ba72139Copy full SHA for ba72139
src/lib.rs
@@ -95,7 +95,7 @@ pub fn raw<T>(data: T) -> *mut T {
95
#[cfg(any(feature = "alloc", feature = "std"))]
96
#[inline]
97
pub unsafe fn free<T>(pointer: *mut T) {
98
- std::mem::drop(own_back(pointer))
+ std::mem::drop(own_back(pointer));
99
}
100
101
/// Opposite of [`raw<T>()`], to use Rust's ownership as usually.
0 commit comments