fix(telemetry): drop the unused <ranges> include from MetricsRegistry.h

The header was added alongside sanitiseHandler(), which calls
std::ranges::all_of -- but that algorithm lives in <algorithm>, which the
same commit also added and which is still needed. <ranges> itself is never
used, so misc-include-cleaner rejects it and the clang-tidy job fails on
MetricsRegistry.h:146.
This commit is contained in:
Pratik Mankawde
2026-07-28 17:41:07 +01:00
parent aea1f25fa8
commit ea9ffa0ebf

View File

@@ -143,7 +143,6 @@
#include <limits>
#include <memory>
#include <optional>
#include <ranges>
#include <string>
#include <string_view>