diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2015-08-19 11:13:20 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-09-01 13:23:19 -0700 |
commit | 0ce526f302de68ece342545b4533aab699336028 (patch) | |
tree | 5d61c92a78ddb09225930701d53239c163a21e6b /host/lib/usrp/e300 | |
parent | 4cfa04f771649245148b7c993d52fdd34225b08e (diff) | |
download | uhd-0ce526f302de68ece342545b4533aab699336028.tar.gz uhd-0ce526f302de68ece342545b4533aab699336028.tar.bz2 uhd-0ce526f302de68ece342545b4533aab699336028.zip |
Fixed minor warnings
* Unreferenced exceptions in try-catch statements
* Incorrect function documentation
* Unlabelled unused variables
Diffstat (limited to 'host/lib/usrp/e300')
-rw-r--r-- | host/lib/usrp/e300/e300_remote_codec_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/e300/e300_remote_codec_ctrl.cpp b/host/lib/usrp/e300/e300_remote_codec_ctrl.cpp index be98f4027..17a564f21 100644 --- a/host/lib/usrp/e300/e300_remote_codec_ctrl.cpp +++ b/host/lib/usrp/e300/e300_remote_codec_ctrl.cpp @@ -242,7 +242,7 @@ public: UHD_MSG(warning) << "Attempting to set filter on E300 in network mode." << std::endl; } - void output_digital_test_tone(bool enb) + void output_digital_test_tone(UHD_UNUSED(bool enb)) { UHD_THROW_INVALID_CODE_PATH(); } |