diff options
Diffstat (limited to 'core/io/net_socket.h')
-rw-r--r-- | core/io/net_socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/net_socket.h b/core/io/net_socket.h index 906218230e..c9cfb0a446 100644 --- a/core/io/net_socket.h +++ b/core/io/net_socket.h @@ -78,6 +78,8 @@ public: virtual void set_reuse_address_enabled(bool p_enabled) = 0; virtual Error join_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) = 0; virtual Error leave_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) = 0; + + virtual ~NetSocket() {} }; #endif // NET_SOCKET_H |