diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2022-05-24 01:05:06 +0200 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2022-05-24 01:05:06 +0200 |
| commit | 328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad (patch) | |
| tree | 3f524f0e7d07d2fcea149041a28a55404dbac3bc | |
| parent | 222c5724ecc922fe67815f428c19f82c129d9386 (diff) | |
| download | rust-328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad.tar.gz rust-328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad.zip | |
Fix stabilization version of `Ipv6Addr::to_ipv4_mapped`
| -rw-r--r-- | library/std/src/net/ip.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/net/ip.rs b/library/std/src/net/ip.rs index 46004c99142..438bae01b60 100644 --- a/library/std/src/net/ip.rs +++ b/library/std/src/net/ip.rs @@ -1655,7 +1655,7 @@ impl Ipv6Addr { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_ipv4_mapped(), None); /// ``` #[rustc_const_unstable(feature = "const_ipv6", issue = "76205")] - #[stable(feature = "ipv6_to_ipv4_mapped", since = "1.62.0")] + #[stable(feature = "ipv6_to_ipv4_mapped", since = "1.63.0")] #[must_use = "this returns the result of the operation, \ without modifying the original"] #[inline] |
