diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-11 16:52:38 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-11 16:52:38 +0100 |
commit | 56f44b425ecf4c0b5fe4cf073b475e18819d2703 (patch) | |
tree | d076ebc2709de8bfef6548deec5afeddb13b2c04 /host/lib | |
parent | 37280c6ff8d42a18d3e4471e4dfe7ab5c050d36f (diff) | |
download | uhd-56f44b425ecf4c0b5fe4cf073b475e18819d2703.tar.gz uhd-56f44b425ecf4c0b5fe4cf073b475e18819d2703.tar.bz2 uhd-56f44b425ecf4c0b5fe4cf073b475e18819d2703.zip |
Do not use C++11 to_stringlea-m8f-003_010_003_000
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 2 |
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"); } } |