uhd/host/utils/latency/lib
Martin Braun ef13bc8c12 uhd: Fix warnings about unused variables
There were a bunch of warnings about unused variables in UHD which were
handled in different manners:

- usrprio_rpc_common.hpp: Here a superfluous if statement was used to
  avoid the "unused" warning. However, recent compilers can also detect
  the superfluous if statement, so unused variable is now simply left
  undeclared.
- radio_control_impl.cpp had an unused constant which is now removed,
  and a conditionally used capture value which is now made "used" even
  when TRACE-level logging is disabled.
- Responder.cpp had an unused variable which was required to be
  specified as an output argument for a C-style function, so we declare
  it unused to silence the warnings.
2024-10-29 17:59:42 +01:00
..
Responder.cpp uhd: Fix warnings about unused variables 2024-10-29 17:59:42 +01:00