mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 09:07:35 +00:00
CSocket: Fix Clang warning about unused private member m_type.
This commit is contained in:
parent
e940d4b07b
commit
16bcaf08a3
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@ public:
|
||||||
};
|
};
|
||||||
virtual ~CSocket() override;
|
virtual ~CSocket() override;
|
||||||
|
|
||||||
|
Type type() const { return m_type; }
|
||||||
|
|
||||||
bool connect(const String& hostname, int port);
|
bool connect(const String& hostname, int port);
|
||||||
bool connect(const CSocketAddress&, int port);
|
bool connect(const CSocketAddress&, int port);
|
||||||
bool connect(const CSocketAddress&);
|
bool connect(const CSocketAddress&);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue