mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
CSocket: Fix Clang warning about unused private member m_type.
This commit is contained in:
parent
e940d4b07b
commit
16bcaf08a3
Notes:
sideshowbarker
2024-07-19 13:04:00 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/16bcaf08a3d
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@ public:
|
|||
};
|
||||
virtual ~CSocket() override;
|
||||
|
||||
Type type() const { return m_type; }
|
||||
|
||||
bool connect(const String& hostname, int port);
|
||||
bool connect(const CSocketAddress&, int port);
|
||||
bool connect(const CSocketAddress&);
|
||||
|
|
Loading…
Reference in a new issue