0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

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
This commit is contained in:
Rickard Hallerbäck 2020-02-28 17:49:12 +01:00 committed by GitHub
parent de0102e927
commit 2206cb37e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

6
RELICENSE/Ricardicus.md Normal file
View File

@ -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

View 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_);