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
Notes: sideshowbarker 2024-07-19 13:04:00 +09:00

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