summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sorber <david.sorber@blacklynx.tech>2021-10-27 07:00:16 -0400
committermormj <34754695+mormj@users.noreply.github.com>2021-10-27 14:25:14 -0400
commit1a8cfa2c196c0e97d1147f2e615db4de8152673f (patch)
tree3b230cd131059328806b4a68ebb5af52cd392465
parenteab2ea6102fd7c84c9fd507b983698aa187df83b (diff)
runtime: add virtual destructor to custom_lock_if class
Signed-off-by: David Sorber <david.sorber@blacklynx.tech>
-rw-r--r--gnuradio-runtime/include/gnuradio/custom_lock.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-runtime/include/gnuradio/custom_lock.h b/gnuradio-runtime/include/gnuradio/custom_lock.h
index b8d9ed6d47..b7f7183fb1 100644
--- a/gnuradio-runtime/include/gnuradio/custom_lock.h
+++ b/gnuradio-runtime/include/gnuradio/custom_lock.h
@@ -26,6 +26,8 @@ namespace gr {
class custom_lock_if
{
public:
+ virtual ~custom_lock_if(){};
+
/*!
* This function will be executed on construction of the custom lock.
*/