Skip to content

Commit 8f8c7fc

Browse files
committed
stabilize const_sockaddr_setters
1 parent 98dc15f commit 8f8c7fc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: library/core/src/net/socket_addr.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ impl SocketAddr {
200200
/// ```
201201
#[inline]
202202
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
203-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
203+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
204204
pub const fn set_ip(&mut self, new_ip: IpAddr) {
205205
// `match (*self, new_ip)` would have us mutate a copy of self only to throw it away.
206206
match (self, new_ip) {
@@ -244,7 +244,7 @@ impl SocketAddr {
244244
/// ```
245245
#[inline]
246246
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
247-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
247+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
248248
pub const fn set_port(&mut self, new_port: u16) {
249249
match *self {
250250
SocketAddr::V4(ref mut a) => a.set_port(new_port),
@@ -350,7 +350,7 @@ impl SocketAddrV4 {
350350
/// ```
351351
#[inline]
352352
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
353-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
353+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
354354
pub const fn set_ip(&mut self, new_ip: Ipv4Addr) {
355355
self.ip = new_ip;
356356
}
@@ -386,7 +386,7 @@ impl SocketAddrV4 {
386386
/// ```
387387
#[inline]
388388
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
389-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
389+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
390390
pub const fn set_port(&mut self, new_port: u16) {
391391
self.port = new_port;
392392
}
@@ -448,7 +448,7 @@ impl SocketAddrV6 {
448448
/// ```
449449
#[inline]
450450
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
451-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
451+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
452452
pub const fn set_ip(&mut self, new_ip: Ipv6Addr) {
453453
self.ip = new_ip;
454454
}
@@ -484,7 +484,7 @@ impl SocketAddrV6 {
484484
/// ```
485485
#[inline]
486486
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
487-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
487+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
488488
pub const fn set_port(&mut self, new_port: u16) {
489489
self.port = new_port;
490490
}
@@ -532,7 +532,7 @@ impl SocketAddrV6 {
532532
/// ```
533533
#[inline]
534534
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
535-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
535+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
536536
pub const fn set_flowinfo(&mut self, new_flowinfo: u32) {
537537
self.flowinfo = new_flowinfo;
538538
}
@@ -575,7 +575,7 @@ impl SocketAddrV6 {
575575
/// ```
576576
#[inline]
577577
#[stable(feature = "sockaddr_setters", since = "1.9.0")]
578-
#[rustc_const_unstable(feature = "const_sockaddr_setters", issue = "131714")]
578+
#[rustc_const_stable(feature = "const_sockaddr_setters", since = "CURRENT_RUSTC_VERSION")]
579579
pub const fn set_scope_id(&mut self, new_scope_id: u32) {
580580
self.scope_id = new_scope_id;
581581
}

0 commit comments

Comments
 (0)