From 0ebcc99e122f886540148cf632676be62d633128 Mon Sep 17 00:00:00 2001 From: Iman Seyed Date: Mon, 30 Jan 2023 01:21:14 +0330 Subject: [PATCH] AK: Remove unused network ordered 'address' variable --- AK/IPv4Address.h | 1 - 1 file changed, 1 deletion(-) diff --git a/AK/IPv4Address.h b/AK/IPv4Address.h index 0db34d2110..066900c0c0 100644 --- a/AK/IPv4Address.h +++ b/AK/IPv4Address.h @@ -140,7 +140,6 @@ public: private: constexpr u32 octet(const SubnetClass subnet) const { - NetworkOrdered address(m_data); constexpr auto bits_per_byte = 8; auto const bits_to_shift = bits_per_byte * int(subnet); return (m_data >> bits_to_shift) & 0x0000'00FF;