aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/dboard/zbx
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-06-22 12:43:39 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-06-22 15:07:02 -0500
commitc399ab8a9b69bca19843eac9ef6cf8e89f816bc4 (patch)
tree12ed90b847740b80dfade3de53c52cc5b9f78669 /host/lib/usrp/dboard/zbx
parent9f339892f52bbaf616592d65b7c36c7ea2a2cf7d (diff)
downloaduhd-c399ab8a9b69bca19843eac9ef6cf8e89f816bc4.tar.gz
uhd-c399ab8a9b69bca19843eac9ef6cf8e89f816bc4.tar.bz2
uhd-c399ab8a9b69bca19843eac9ef6cf8e89f816bc4.zip
zbx: Fix compilation on clang-10
The ostream<< overloads where in the wrong namespace to be found by the expert framework. Other compilers are more forgiving; not so clang 10. This enables compilation on that compiler.
Diffstat (limited to 'host/lib/usrp/dboard/zbx')
-rw-r--r--host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp b/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp
index e6bbf2798..ef86f10b6 100644
--- a/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp
+++ b/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp
@@ -31,7 +31,7 @@ using namespace uhd::rfnoc;
// ostream << operator overloads for our enum classes, so that property nodes of that type
// can be added to our expert graph
-namespace uhd { namespace experts {
+namespace uhd { namespace usrp { namespace zbx {
std::ostream& operator<<(
std::ostream& os, const ::uhd::usrp::zbx::zbx_lo_source_t& lo_source)
@@ -65,9 +65,6 @@ std::ostream& operator<<(
UHD_THROW_INVALID_CODE_PATH();
}
}
-}} // namespace uhd::experts
-
-namespace uhd { namespace usrp { namespace zbx {
void zbx_dboard_impl::_init_cpld()
{