diff options
| author | Martin Braun <martin.braun@ettus.com> | 2017-05-03 15:59:47 -0700 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2017-05-03 15:59:47 -0700 | 
| commit | c3beb6d1ec2f11ab4d8153b43396d07127cd4f20 (patch) | |
| tree | cb71d69a3ff09f6c81cf6454d4dd1bb33a2a1382 /host/lib/rfnoc/nocscript | |
| parent | 15f0140cd715900b3950b477fb156b0435235c4a (diff) | |
| parent | e6c8cee6e9e6dbe257bc6a77899306e611d44d71 (diff) | |
| download | uhd-c3beb6d1ec2f11ab4d8153b43396d07127cd4f20.tar.gz uhd-c3beb6d1ec2f11ab4d8153b43396d07127cd4f20.tar.bz2 uhd-c3beb6d1ec2f11ab4d8153b43396d07127cd4f20.zip | |
Merge branch 'maint'
Diffstat (limited to 'host/lib/rfnoc/nocscript')
| -rw-r--r-- | host/lib/rfnoc/nocscript/expression.hpp | 2 | 
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); | 
