AK: Remove unused network ordered 'address' variable

This commit is contained in:
Iman Seyed 2023-01-30 01:21:14 +03:30 committed by Jelle Raaijmakers
parent e74e8381d5
commit 0ebcc99e12

View file

@ -140,7 +140,6 @@ public:
private:
constexpr u32 octet(const SubnetClass subnet) const
{
NetworkOrdered<u32> 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;