aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib/transport/link_base.hpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-01-08 12:25:25 +0100
committerAaron Rossetto <aaron.rossetto@ni.com>2021-03-04 08:23:50 -0600
commit49e5ef81530684998bc4bc0934590cdaa81190ab (patch)
treea985c6e7864cb60a33e783910bcf2d072688d114 /host/lib/include/uhdlib/transport/link_base.hpp
parentdf6c2bebae7af7968165f6ad16e56d3f9fccef52 (diff)
downloaduhd-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/transport/link_base.hpp')
-rw-r--r--host/lib/include/uhdlib/transport/link_base.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/transport/link_base.hpp b/host/lib/include/uhdlib/transport/link_base.hpp
index e2b0425bd..76b5c1ee3 100644
--- a/host/lib/include/uhdlib/transport/link_base.hpp
+++ b/host/lib/include/uhdlib/transport/link_base.hpp
@@ -74,6 +74,8 @@ public:
{
}
+ virtual ~send_link_base() = default;
+
size_t get_num_send_frames() const override
{
return _num_send_frames;
@@ -164,7 +166,13 @@ public:
{
}
+<<<<<<< HEAD
size_t get_num_recv_frames() const override
+=======
+ virtual ~recv_link_base() = default;
+
+ virtual size_t get_num_recv_frames() const
+>>>>>>> lib: Add some virtual dtors
{
return _num_recv_frames;
}