Skip to content

Commit e6dc604

Browse files
committed
[net] clippy: match_like_matches_macro
warning: match expression looks like `matches!` macro --> library/std/src/net/ip.rs:459:9 | 459 | / match self.octets() { 460 | | [169, 254, ..] => true, 461 | | _ => false, 462 | | } | |_________^ help: try this: `matches!(self.octets(), [169, 254, ..])` | = note: `#[warn(clippy::match_like_matches_macro)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro Signed-off-by: wcampbell <wcampbell1995@gmail.com>
1 parent 058699d commit e6dc604

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

library/std/src/net/ip.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,7 @@ impl Ipv4Addr {
456456
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
457457
#[stable(since = "1.7.0", feature = "ip_17")]
458458
pub const fn is_link_local(&self) -> bool {
459-
match self.octets() {
460-
[169, 254, ..] => true,
461-
_ => false,
462-
}
459+
matches!(self.octets(), [169, 254, ..])
463460
}
464461

465462
/// Returns [`true`] if the address appears to be globally routable.

0 commit comments

Comments
 (0)