diff options
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/include/uhdlib/rfnoc/ctrl_iface.hpp | 2 | ||||
-rw-r--r-- | host/lib/rfnoc/ctrl_iface.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/ctrl_iface.hpp b/host/lib/include/uhdlib/rfnoc/ctrl_iface.hpp index d89dea534..deb58f14c 100644 --- a/host/lib/include/uhdlib/rfnoc/ctrl_iface.hpp +++ b/host/lib/include/uhdlib/rfnoc/ctrl_iface.hpp @@ -21,7 +21,7 @@ class ctrl_iface { public: typedef boost::shared_ptr<ctrl_iface> sptr; - virtual ~ctrl_iface(void) = 0; + virtual ~ctrl_iface(void) {} /*! Make a new control object * diff --git a/host/lib/rfnoc/ctrl_iface.cpp b/host/lib/rfnoc/ctrl_iface.cpp index 9515cda0d..719341717 100644 --- a/host/lib/rfnoc/ctrl_iface.cpp +++ b/host/lib/rfnoc/ctrl_iface.cpp @@ -264,4 +264,3 @@ ctrl_iface::sptr ctrl_iface::make( ); } } - |