From 2206cb37e0a9e270a3a0d69abf6197be173471e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rickard=20Hallerb=C3=A4ck?= Date: Fri, 28 Feb 2020 17:49:12 +0100 Subject: [PATCH] ip_resolver_t: Silencing C++-warning -Wnon-virtual-dtor (#3837) * ip_resolver_t: adding virtual descructor to silence C++-warning -Wnon-virtual-dtor * adding my relicense --- RELICENSE/Ricardicus.md | 6 ++++++ src/ip_resolver.hpp | 1 + 2 files changed, 7 insertions(+) create mode 100644 RELICENSE/Ricardicus.md diff --git a/RELICENSE/Ricardicus.md b/RELICENSE/Ricardicus.md new file mode 100644 index 00000000..c052a879 --- /dev/null +++ b/RELICENSE/Ricardicus.md @@ -0,0 +1,6 @@ +Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL +This is a statement by Rickard Hallerbäck that grants permission to relicense its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source Initiative approved license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life). + +A portion of the commits made by the Github handle "Ricardicus", with commit author "Rickard Hallerbäck", are copyright of Rickard Hallerbäck. This document hereby grants the libzmq project team to relicense libzmq, including all past, present and future contributions of the author listed above. + +Rickard Hallerbäck 2020/02/28 \ No newline at end of file diff --git a/src/ip_resolver.hpp b/src/ip_resolver.hpp index f1aafea6..e60f6356 100644 --- a/src/ip_resolver.hpp +++ b/src/ip_resolver.hpp @@ -90,6 +90,7 @@ class ip_resolver_t { public: ip_resolver_t (ip_resolver_options_t opts_); + virtual ~ip_resolver_t (){}; int resolve (ip_addr_t *ip_addr_, const char *name_);