diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-01-08 12:25:25 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-04 08:23:50 -0600 |
commit | 49e5ef81530684998bc4bc0934590cdaa81190ab (patch) | |
tree | a985c6e7864cb60a33e783910bcf2d072688d114 /host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp | |
parent | df6c2bebae7af7968165f6ad16e56d3f9fccef52 (diff) | |
download | uhd-49e5ef81530684998bc4bc0934590cdaa81190ab.tar.gz uhd-49e5ef81530684998bc4bc0934590cdaa81190ab.tar.bz2 uhd-49e5ef81530684998bc4bc0934590cdaa81190ab.zip |
lib: Add some virtual dtors
Classes where we call delete (implicitly or explicitly) with a virtual
inheritance structure need to declare dtors as virtual.
This reduces compiler warnings with clang. There are no known bugs (yet)
due to this.
Diffstat (limited to 'host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp')
-rw-r--r-- | host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp b/host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp index 6b2662703..613db9722 100644 --- a/host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp +++ b/host/lib/include/uhdlib/usrp/common/io_service_mgr.hpp @@ -59,6 +59,8 @@ class io_service_mgr public: using sptr = std::shared_ptr<io_service_mgr>; + virtual ~io_service_mgr() = default; + /*! Connects a pair of links to an I/O service * * Call this method to connect a pair of links to an I/O service. For muxed |