Skip to content

Commit

Permalink
Add ptr::RawMutPtr to prelude
Browse files Browse the repository at this point in the history
Closes #18196
  • Loading branch information
aochagavia committed Oct 28, 2014
1 parent 58dc0a0 commit a33b744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/prelude.rs
Expand Up @@ -76,7 +76,7 @@
#[doc(no_inline)] pub use num::{FloatMath, ToPrimitive, FromPrimitive};
#[doc(no_inline)] pub use boxed::Box;
#[doc(no_inline)] pub use path::{GenericPath, Path, PosixPath, WindowsPath};
#[doc(no_inline)] pub use ptr::RawPtr;
#[doc(no_inline)] pub use ptr::{RawPtr, RawMutPtr};
#[doc(no_inline)] pub use io::{Buffer, Writer, Reader, Seek};
#[doc(no_inline)] pub use str::{Str, StrVector, StrSlice};
#[doc(no_inline)] pub use str::{IntoMaybeOwned, StrAllocating, UnicodeStrSlice};
Expand Down

0 comments on commit a33b744

Please sign in to comment.