1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

CSocket: Fix Clang warning about unused private member m_type.

This commit is contained in:
Andreas Kling 2019-07-25 11:48:21 +02:00
parent e940d4b07b
commit 16bcaf08a3

View file

@ -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&);