diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-11-23 09:16:10 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-08-22 08:17:11 -0700 |
commit | 0fccb00d6ba7d85f2bc11df5d1948b6c521cb8f6 (patch) | |
tree | 71a7207899f98f4b9198ee3fa83ae88e574feeb8 /host/include | |
parent | 7d2ba938a719b68e5e464432a874d2b45da1f729 (diff) | |
download | uhd-0fccb00d6ba7d85f2bc11df5d1948b6c521cb8f6.tar.gz uhd-0fccb00d6ba7d85f2bc11df5d1948b6c521cb8f6.tar.bz2 uhd-0fccb00d6ba7d85f2bc11df5d1948b6c521cb8f6.zip |
boost: Replaced units::demangle with core::demangle where appropriate
Boost moved this around in version 1.58.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/device3.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/include/uhd/device3.hpp b/host/include/uhd/device3.hpp index 8dca2bc47..c4d0d94fe 100644 --- a/host/include/uhd/device3.hpp +++ b/host/include/uhd/device3.hpp @@ -1,6 +1,7 @@ // // Copyright 2014-2016 Ettus Research LLC // Copyright 2018 Ettus Research, a National Instruments Company +// Copyright 2019 Ettus Research, a National Instruments Brand // // SPDX-License-Identifier: GPL-3.0-or-later // @@ -11,8 +12,8 @@ #include <uhd/device.hpp> #include <uhd/rfnoc/block_ctrl_base.hpp> #include <uhd/rfnoc/graph.hpp> +#include <boost/core/demangle.hpp> #include <boost/thread/mutex.hpp> -#include <boost/units/detail/utility.hpp> #include <vector> namespace uhd { @@ -97,8 +98,7 @@ public: } else { throw uhd::lookup_error(str( boost::format("This device does not have a block of type %s with ID: %s") - % boost::units::detail::demangle(typeid(T).name()) - % block_id.to_string())); + % boost::core::demangle(typeid(T).name()) % block_id.to_string())); } } |