diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-06-22 12:43:39 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-22 15:07:02 -0500 |
commit | c399ab8a9b69bca19843eac9ef6cf8e89f816bc4 (patch) | |
tree | 12ed90b847740b80dfade3de53c52cc5b9f78669 /host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp | |
parent | 9f339892f52bbaf616592d65b7c36c7ea2a2cf7d (diff) | |
download | uhd-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/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp')
-rw-r--r-- | host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp b/host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp index 0d1d7af7c..bc61b9d61 100644 --- a/host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp +++ b/host/lib/include/uhdlib/usrp/dboard/zbx/zbx_constants.hpp @@ -261,9 +261,9 @@ static const std::vector<tune_map_item_t> tx_tune_map = { }}} // namespace uhd::usrp::zbx -namespace uhd { namespace experts { +namespace uhd { namespace usrp { namespace zbx { // << Operator overload for expert's node printing (zbx_lo_source_t property) // Any added expert nodes of type enum class will have to define this std::ostream& operator<<( std::ostream& os, const ::uhd::usrp::zbx::zbx_lo_source_t& lo_source); -}} // namespace uhd::experts +}}} // namespace uhd::usrp::zbx |