diff options
author | Lane Kolbly <lane.kolbly@ni.com> | 2021-12-07 16:46:58 -0600 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-01-05 10:28:39 -0600 |
commit | 0cfd84732cef5b156b9df478baa8c431740275dc (patch) | |
tree | d59865ec614bc3d30ee966b51d7f617525276fef /host/lib/include | |
parent | 0d51291070e34eb5431fcde448907e28c2db2926 (diff) | |
download | uhd-0cfd84732cef5b156b9df478baa8c431740275dc.tar.gz uhd-0cfd84732cef5b156b9df478baa8c431740275dc.tar.bz2 uhd-0cfd84732cef5b156b9df478baa8c431740275dc.zip |
host: Make core_iface inheritence virtual
Diffstat (limited to 'host/lib/include')
-rw-r--r-- | host/lib/include/uhdlib/rfnoc/rf_control/dboard_iface.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/rf_control/dboard_iface.hpp b/host/lib/include/uhdlib/rfnoc/rf_control/dboard_iface.hpp index b7759098a..db93459b9 100644 --- a/host/lib/include/uhdlib/rfnoc/rf_control/dboard_iface.hpp +++ b/host/lib/include/uhdlib/rfnoc/rf_control/dboard_iface.hpp @@ -23,7 +23,7 @@ namespace uhd { namespace rfnoc { namespace rf_control { * just includes accessors to objects which implement the required functionality. * This class also directly implements core_iface for the remainder. */ -class dboard_iface : public core_iface +class dboard_iface : virtual public core_iface { public: using sptr = std::shared_ptr<dboard_iface>; |