aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/rfnoc_block_tests/switchboard_block_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests/rfnoc_block_tests/switchboard_block_test.cpp')
-rw-r--r--host/tests/rfnoc_block_tests/switchboard_block_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/tests/rfnoc_block_tests/switchboard_block_test.cpp b/host/tests/rfnoc_block_tests/switchboard_block_test.cpp
index 693923693..3cc9fd147 100644
--- a/host/tests/rfnoc_block_tests/switchboard_block_test.cpp
+++ b/host/tests/rfnoc_block_tests/switchboard_block_test.cpp
@@ -41,8 +41,8 @@ public:
input_select.push_back(0);
}
- virtual void _poke_cb(
- uint32_t addr, uint32_t data, uhd::time_spec_t /*time*/, bool /*ack*/)
+ void _poke_cb(
+ uint32_t addr, uint32_t data, uhd::time_spec_t /*time*/, bool /*ack*/) override
{
size_t chan = addr / switchboard_block_control::REG_BLOCK_SIZE;
size_t offset = addr % switchboard_block_control::REG_BLOCK_SIZE;
@@ -55,7 +55,7 @@ public:
}
}
- virtual void _peek_cb(uint32_t addr, uhd::time_spec_t /*time*/)
+ void _peek_cb(uint32_t addr, uhd::time_spec_t /*time*/) override
{
size_t chan = addr / switchboard_block_control::REG_BLOCK_SIZE;
size_t offset = addr % switchboard_block_control::REG_BLOCK_SIZE;