aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2017-04-25 12:33:07 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-25 17:15:13 -0700
commite6c8cee6e9e6dbe257bc6a77899306e611d44d71 (patch)
tree8b444ada50d95b84f1b3fa51df840165861cf3c4 /host/lib
parenta96fdcfe275451c2a217c6ccf34cdd73c5719905 (diff)
downloaduhd-e6c8cee6e9e6dbe257bc6a77899306e611d44d71.tar.gz
uhd-e6c8cee6e9e6dbe257bc6a77899306e611d44d71.tar.bz2
uhd-e6c8cee6e9e6dbe257bc6a77899306e611d44d71.zip
coverity: fix various minor issues
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/rfnoc/nocscript/expression.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/rfnoc/nocscript/expression.hpp b/host/lib/rfnoc/nocscript/expression.hpp
index 83fc5bcbc..1acd02009 100644
--- a/host/lib/rfnoc/nocscript/expression.hpp
+++ b/host/lib/rfnoc/nocscript/expression.hpp
@@ -215,6 +215,7 @@ class expression_container : public expression
//! Create an empty container
expression_container() : _combiner(COMBINE_NOTSET) {};
+ virtual ~expression_container(){};
/*! Type-deduction rules for containers are:
* - If the combination type is COMBINE_ALL or COMBINE_AND,
@@ -299,6 +300,7 @@ class expression_function : public expression_container
const std::string &name,
const boost::shared_ptr<function_table> func_table
);
+ ~expression_function(){};
//! Add an argument expression
virtual void add(expression::sptr new_expr);