Unverified Commit 2206cb37 authored by Rickard Hallerbäck's avatar Rickard Hallerbäck Committed by GitHub

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
parent de0102e9
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
......@@ -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_);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment