mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 14:50:54 +00:00
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.