fix missing sink/source iface destructor

This commit is contained in:
Eric Wild 2022-06-10 14:43:48 +02:00
parent a309841752
commit 6b11b02947
2 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,8 @@
class sink_iface class sink_iface
{ {
public: public:
virtual ~sink_iface() = default;
/*! /*!
* Get the number of channels the underlying radio hardware offers. * Get the number of channels the underlying radio hardware offers.
* \return the number of available channels * \return the number of available channels

View File

@ -32,6 +32,8 @@
class source_iface class source_iface
{ {
public: public:
virtual ~source_iface() = default;
/*! /*!
* Get the number of channels the underlying radio hardware offers. * Get the number of channels the underlying radio hardware offers.
* \return the number of available channels * \return the number of available channels