diff options
author | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-02-04 11:51:40 -0600 |
---|---|---|
committer | atrnati <54334261+atrnati@users.noreply.github.com> | 2020-02-04 15:17:29 -0600 |
commit | 40d21737061258a4e4584bc4233247a4186d3452 (patch) | |
tree | 60693e0087b0821745a01423bac3b9b572251290 | |
parent | 8f4b21d6ec5ae9850e5fa4ba25cc8b14b95b22ae (diff) | |
download | uhd-40d21737061258a4e4584bc4233247a4186d3452.tar.gz uhd-40d21737061258a4e4584bc4233247a4186d3452.tar.bz2 uhd-40d21737061258a4e4584bc4233247a4186d3452.zip |
rfnoc: Provide make_args_t dtor in rfnoc_blocks_test
-rw-r--r-- | host/tests/rfnoc_blocks_test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/tests/rfnoc_blocks_test.cpp b/host/tests/rfnoc_blocks_test.cpp index b9899177e..92e9fc13c 100644 --- a/host/tests/rfnoc_blocks_test.cpp +++ b/host/tests/rfnoc_blocks_test.cpp @@ -19,6 +19,9 @@ using namespace uhd::rfnoc; +// Redeclare this here, since it's only defined outside of UHD_API +noc_block_base::make_args_t::~make_args_t() = default; + namespace { constexpr size_t DEFAULT_MTU = 8000; |