Skip to content

Commit ddfd2ea

Browse files
committed
merge const_ipv4 / const_ipv6 feature gate into 'ip' feature gate
1 parent b6c0376 commit ddfd2ea

File tree

4 files changed

+0
-22
lines changed

4 files changed

+0
-22
lines changed

core/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@
124124
#![feature(const_hash)]
125125
#![feature(const_heap)]
126126
#![feature(const_index_range_slice_index)]
127-
#![feature(const_ipv4)]
128-
#![feature(const_ipv6)]
129127
#![feature(const_likely)]
130128
#![feature(const_make_ascii)]
131129
#![feature(const_maybe_uninit_assume_init)]

core/src/net/ip_addr.rs

-14
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ impl IpAddr {
295295
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(80, 9, 12, 3)).is_global(), true);
296296
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1)).is_global(), true);
297297
/// ```
298-
#[rustc_const_unstable(feature = "const_ip", issue = "76205")]
299298
#[unstable(feature = "ip", issue = "27709")]
300299
#[must_use]
301300
#[inline]
@@ -348,7 +347,6 @@ impl IpAddr {
348347
/// true
349348
/// );
350349
/// ```
351-
#[rustc_const_unstable(feature = "const_ip", issue = "76205")]
352350
#[unstable(feature = "ip", issue = "27709")]
353351
#[must_use]
354352
#[inline]
@@ -776,7 +774,6 @@ impl Ipv4Addr {
776774
///
777775
/// // For a complete overview see the IANA IPv4 Special-Purpose Address Registry.
778776
/// ```
779-
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
780777
#[unstable(feature = "ip", issue = "27709")]
781778
#[must_use]
782779
#[inline]
@@ -813,7 +810,6 @@ impl Ipv4Addr {
813810
/// assert_eq!(Ipv4Addr::new(100, 127, 255, 255).is_shared(), true);
814811
/// assert_eq!(Ipv4Addr::new(100, 128, 0, 0).is_shared(), false);
815812
/// ```
816-
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
817813
#[unstable(feature = "ip", issue = "27709")]
818814
#[must_use]
819815
#[inline]
@@ -841,7 +837,6 @@ impl Ipv4Addr {
841837
/// assert_eq!(Ipv4Addr::new(198, 19, 255, 255).is_benchmarking(), true);
842838
/// assert_eq!(Ipv4Addr::new(198, 20, 0, 0).is_benchmarking(), false);
843839
/// ```
844-
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
845840
#[unstable(feature = "ip", issue = "27709")]
846841
#[must_use]
847842
#[inline]
@@ -878,7 +873,6 @@ impl Ipv4Addr {
878873
/// // The broadcast address is not considered as reserved for future use by this implementation
879874
/// assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_reserved(), false);
880875
/// ```
881-
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
882876
#[unstable(feature = "ip", issue = "27709")]
883877
#[must_use]
884878
#[inline]
@@ -1510,7 +1504,6 @@ impl Ipv6Addr {
15101504
///
15111505
/// // For a complete overview see the IANA IPv6 Special-Purpose Address Registry.
15121506
/// ```
1513-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
15141507
#[unstable(feature = "ip", issue = "27709")]
15151508
#[must_use]
15161509
#[inline]
@@ -1562,7 +1555,6 @@ impl Ipv6Addr {
15621555
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unique_local(), false);
15631556
/// assert_eq!(Ipv6Addr::new(0xfc02, 0, 0, 0, 0, 0, 0, 0).is_unique_local(), true);
15641557
/// ```
1565-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
15661558
#[unstable(feature = "ip", issue = "27709")]
15671559
#[must_use]
15681560
#[inline]
@@ -1591,7 +1583,6 @@ impl Ipv6Addr {
15911583
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast(), true);
15921584
/// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).is_unicast(), false);
15931585
/// ```
1594-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
15951586
#[unstable(feature = "ip", issue = "27709")]
15961587
#[must_use]
15971588
#[inline]
@@ -1643,7 +1634,6 @@ impl Ipv6Addr {
16431634
/// assert_eq!(Ipv6Addr::new(0xfe80, 0, 0, 1, 0, 0, 0, 0).is_unicast_link_local(), true);
16441635
/// assert_eq!(Ipv6Addr::new(0xfe81, 0, 0, 0, 0, 0, 0, 0).is_unicast_link_local(), true);
16451636
/// ```
1646-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
16471637
#[unstable(feature = "ip", issue = "27709")]
16481638
#[must_use]
16491639
#[inline]
@@ -1668,7 +1658,6 @@ impl Ipv6Addr {
16681658
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_documentation(), false);
16691659
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_documentation(), true);
16701660
/// ```
1671-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
16721661
#[unstable(feature = "ip", issue = "27709")]
16731662
#[must_use]
16741663
#[inline]
@@ -1729,7 +1718,6 @@ impl Ipv6Addr {
17291718
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast_global(), false);
17301719
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_global(), true);
17311720
/// ```
1732-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
17331721
#[unstable(feature = "ip", issue = "27709")]
17341722
#[must_use]
17351723
#[inline]
@@ -1758,7 +1746,6 @@ impl Ipv6Addr {
17581746
/// );
17591747
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).multicast_scope(), None);
17601748
/// ```
1761-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
17621749
#[unstable(feature = "ip", issue = "27709")]
17631750
#[must_use]
17641751
#[inline]
@@ -1818,7 +1805,6 @@ impl Ipv6Addr {
18181805
///
18191806
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_ipv4_mapped(), false);
18201807
/// ```
1821-
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
18221808
#[unstable(feature = "ip", issue = "27709")]
18231809
#[must_use]
18241810
#[inline]

core/tests/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
#![feature(const_black_box)]
2020
#![feature(const_hash)]
2121
#![feature(const_heap)]
22-
#![feature(const_ip)]
23-
#![feature(const_ipv4)]
24-
#![feature(const_ipv6)]
2522
#![feature(const_likely)]
2623
#![feature(const_nonnull_new)]
2724
#![feature(const_option_ext)]

std/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,6 @@
414414
// tidy-alphabetical-start
415415
#![feature(const_collections_with_hasher)]
416416
#![feature(const_hash)]
417-
#![feature(const_ip)]
418-
#![feature(const_ipv4)]
419-
#![feature(const_ipv6)]
420417
#![feature(thread_local_internals)]
421418
// tidy-alphabetical-end
422419
//

0 commit comments

Comments
 (0)