aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-03-11 16:52:38 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-03-11 16:52:38 +0100
commit56f44b425ecf4c0b5fe4cf073b475e18819d2703 (patch)
treed076ebc2709de8bfef6548deec5afeddb13b2c04
parent37280c6ff8d42a18d3e4471e4dfe7ab5c050d36f (diff)
downloaduhd-lea-m8f-003_010_003_000.tar.gz
uhd-lea-m8f-003_010_003_000.tar.bz2
uhd-lea-m8f-003_010_003_000.zip
Do not use C++11 to_stringlea-m8f-003_010_003_000
-rw-r--r--host/lib/usrp/b200/b200_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp
index e4ea372b3..7f184f203 100644
--- a/host/lib/usrp/b200/b200_impl.cpp
+++ b/host/lib/usrp/b200/b200_impl.cpp
@@ -720,7 +720,7 @@ b200_impl::b200_impl(const uhd::device_addr_t& device_addr, usb_device_handle::s
if (_gps and _gps->gps_detected()) {
const int freq = _gps->gps_refclock_frequency();
if (not _adf4001_iface->set_refclk_frequency(freq)) {
- throw uhd::value_error("Could not set refclk frequency to " + std::to_string(freq));
+ throw uhd::value_error("Could not set refclk frequency");
}
}