diff options
| author | Alexis Beingessner <a.beingessner@gmail.com> | 2015-07-21 14:11:50 -0700 |
|---|---|---|
| committer | Andrew Paseltiner <apaseltiner@gmail.com> | 2015-10-30 10:54:25 -0400 |
| commit | e72c226bed92bbbf9050044b9ebafa6b8deb0ea3 (patch) | |
| tree | eb3ba24351073b5ae435f3d3d00a67dc3516966b /src/libcore/ptr.rs | |
| parent | 914c4dbc2a1037e63625b0bf846c6b550d0918c7 (diff) | |
| download | rust-e72c226bed92bbbf9050044b9ebafa6b8deb0ea3.tar.gz rust-e72c226bed92bbbf9050044b9ebafa6b8deb0ea3.zip | |
expose drop_in_place as ptr::drop_in_place
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 52a888d797b..54cd3d0c867 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -40,6 +40,8 @@ pub use intrinsics::copy; #[stable(feature = "rust1", since = "1.0.0")] pub use intrinsics::write_bytes; +pub use intrinsics::drop_in_place; + /// Creates a null raw pointer. /// /// # Examples |
