diff options
| author | bors <bors@rust-lang.org> | 2014-09-06 13:06:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-09-06 13:06:27 +0000 |
| commit | 9f2ba967a0c6c161158da52fa86ae153ac6aab19 (patch) | |
| tree | 30adc77571c0c65359011c745bbc8b9981010105 | |
| parent | a356e98803065a0e093c033a6e431099e0ea432e (diff) | |
| parent | 0b53cc54e12e70d967e234d2680591219cb47c1c (diff) | |
auto merge of #17002 : tari/rust/std-mut-ref-slice, r=alexcrichton
`std::slice` exported `ref_slice` but not `mut_ref_slice`. This change makes it export both.
| -rw-r--r-- | src/libcollections/slice.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index 71b9673d279..2418fabfff1 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -96,7 +96,7 @@ use vec::Vec; pub use core::slice::{Chunks, Slice, ImmutableSlice, ImmutablePartialEqSlice}; pub use core::slice::{ImmutableOrdSlice, MutableSlice, Items, MutItems}; pub use core::slice::{MutSplits, MutChunks, Splits}; -pub use core::slice::{bytes, ref_slice, MutableCloneableSlice}; +pub use core::slice::{bytes, mut_ref_slice, ref_slice, MutableCloneableSlice}; pub use core::slice::{Found, NotFound}; // Functional utilities |
