diff options
Diffstat (limited to 'host/lib/include/uhdlib/usrp/common/rpc.py')
-rw-r--r-- | host/lib/include/uhdlib/usrp/common/rpc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/usrp/common/rpc.py b/host/lib/include/uhdlib/usrp/common/rpc.py index 7840d10aa..04a43ebce 100644 --- a/host/lib/include/uhdlib/usrp/common/rpc.py +++ b/host/lib/include/uhdlib/usrp/common/rpc.py @@ -96,6 +96,8 @@ namespace uhd { namespace usrp { public: using sptr = std::shared_ptr<${iface.basename}_iface>; + virtual ~${iface.basename}_iface() = default; + %for function in iface.functions: virtual ${function.return_type} ${function.name}(${",".join(function.args)}) = 0; %endfor |