diff options
author | David Sorber <david.sorber@blacklynx.tech> | 2021-10-27 07:00:16 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-10-27 14:25:14 -0400 |
commit | 1a8cfa2c196c0e97d1147f2e615db4de8152673f (patch) | |
tree | 3b230cd131059328806b4a68ebb5af52cd392465 | |
parent | eab2ea6102fd7c84c9fd507b983698aa187df83b (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.h | 2 |
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. */ |