mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:25:08 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -24,15 +24,15 @@ public:
|
|||
, m_peer_address(peer_address)
|
||||
, m_peer_port(peer_port) {};
|
||||
|
||||
IPv4Address local_address() const { return m_local_address; };
|
||||
u16 local_port() const { return m_local_port; };
|
||||
IPv4Address peer_address() const { return m_peer_address; };
|
||||
u16 peer_port() const { return m_peer_port; };
|
||||
IPv4Address local_address() const { return m_local_address; }
|
||||
u16 local_port() const { return m_local_port; }
|
||||
IPv4Address peer_address() const { return m_peer_address; }
|
||||
u16 peer_port() const { return m_peer_port; }
|
||||
|
||||
bool operator==(IPv4SocketTuple const& other) const
|
||||
{
|
||||
return other.local_address() == m_local_address && other.local_port() == m_local_port && other.peer_address() == m_peer_address && other.peer_port() == m_peer_port;
|
||||
};
|
||||
}
|
||||
|
||||
ErrorOr<NonnullOwnPtr<KString>> to_string() const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue