Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Ege Çetin committed Jan 11, 2025
1 parent cbe3a03 commit e5d28d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common++/src/IpAddress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ namespace pcpp
uint64_t IPv6Network::getTotalAddressCount() const
{
int numOfBitset = 0;
for (const auto &byte : m_Mask)
for (const auto& byte : m_Mask)
{
const std::bitset<8> bitset(static_cast<uint8_t>(~byte));
numOfBitset += static_cast<int>(bitset.count());
Expand Down

0 comments on commit e5d28d6

Please sign in to comment.