Skip to content

Commit cda498c

Browse files
committed
Stabilise 'Cursor::{get_mut, set_position}';
1 parent 5958825 commit cda498c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/io/cursor.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impl<T> Cursor<T> {
153153
/// let reference = buff.get_mut();
154154
/// ```
155155
#[stable(feature = "rust1", since = "1.0.0")]
156-
#[rustc_const_unstable(feature = "const_mut_cursor", issue = "130801")]
156+
#[rustc_const_stable(feature = "const_mut_cursor", since = "CURRENT_RUSTC_VERSION")]
157157
pub const fn get_mut(&mut self) -> &mut T {
158158
&mut self.inner
159159
}
@@ -201,7 +201,7 @@ impl<T> Cursor<T> {
201201
/// assert_eq!(buff.position(), 4);
202202
/// ```
203203
#[stable(feature = "rust1", since = "1.0.0")]
204-
#[rustc_const_unstable(feature = "const_mut_cursor", issue = "130801")]
204+
#[rustc_const_stable(feature = "const_mut_cursor", since = "CURRENT_RUSTC_VERSION")]
205205
pub const fn set_position(&mut self, pos: u64) {
206206
self.pos = pos;
207207
}

0 commit comments

Comments
 (0)