File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ Version 1.15.1 (2017-02-07)
2
+ ===========================
3
+
4
+ * [ Fix IntoIter::as_mut_slice's signature] [ 39466 ]
5
+
6
+ [ 39466 ] : https://github.com/rust-lang/rust/pull/39466
7
+
8
+
1
9
Version 1.15.0 (2017-02-02)
2
10
===========================
3
11
Original file line number Diff line number Diff line change 13
13
# #####################################################################
14
14
15
15
# The version number
16
- CFG_RELEASE_NUM =1.15.0
16
+ CFG_RELEASE_NUM =1.15.1
17
17
18
18
# An optional number to put after the label, e.g. '.2' -> '-beta.2'
19
19
# NB Make sure it starts with a dot to conform to semver pre-release
Original file line number Diff line number Diff line change @@ -1929,7 +1929,7 @@ impl<T> IntoIter<T> {
1929
1929
/// assert_eq!(into_iter.next().unwrap(), 'z');
1930
1930
/// ```
1931
1931
#[ stable( feature = "vec_into_iter_as_slice" , since = "1.15.0" ) ]
1932
- pub fn as_mut_slice ( & self ) -> & mut [ T ] {
1932
+ pub fn as_mut_slice ( & mut self ) -> & mut [ T ] {
1933
1933
unsafe {
1934
1934
slice:: from_raw_parts_mut ( self . ptr as * mut T , self . len ( ) )
1935
1935
}
You can’t perform that action at this time.
0 commit comments