Files
rippled/src/xrpld/telemetry
Pratik Mankawde bbc549638c style(telemetry): satisfy clang-tidy on the fee table and registry includes
Two findings from the CI clang-tidy job, both mechanical:

- MetricsRegistry.h no longer includes <ranges>. The only ranges use in
  the header is std::ranges::all_of, which is declared in <algorithm>
  and already included, so the include was genuinely unused.

- The computeGetObjectByHashFee() expectation table now uses designated
  initializers. FeeCase has five fields, two of which are plain ints in
  adjacent positions, so naming them at each row also makes a
  requested/found transposition impossible to write by accident.

No behaviour change.
2026-07-28 18:17:37 +01:00
..