From 2e82b232e87d6eb65f8fc0aa7c50d70a2913bbe3 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Mon, 18 Sep 2017 12:30:48 +0100 Subject: [PATCH] epee: give virtual dtor to network_address_base It has virtual functions and is used as a base class --- contrib/epee/include/net/net_utils_base.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/epee/include/net/net_utils_base.h b/contrib/epee/include/net/net_utils_base.h index ef3a1d146..df83517ff 100644 --- a/contrib/epee/include/net/net_utils_base.h +++ b/contrib/epee/include/net/net_utils_base.h @@ -71,6 +71,9 @@ namespace net_utils } uint64_t m_host_id; uint64_t m_full_id; + + protected: + virtual ~network_address_base() {} }; struct ipv4_network_address: public network_address_base {