From 66ea0e64d1551a06f75e702945775204b74302be Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Mon, 20 Jan 2025 16:45:38 +0100 Subject: [PATCH] add missing include to fix: ```cpp /build/source/test/performance/logging.cc: In function 'void {anonymous}::PrintStats(const std::string&, const std::map >&, uint64_t)': /build/source/test/performance/logging.cc:79:16: error: 'max_element' is not a member of 'std'; did you mean 'tuple_element'? 79 | (*std::max_element(t_result.second.begin(), t_result.second.end())); | ^~~~~~~~~~~ ``` Signed-off-by: Guilhem Saurel --- test/performance/logging.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/performance/logging.cc b/test/performance/logging.cc index 2403d0b6e..79191b055 100644 --- a/test/performance/logging.cc +++ b/test/performance/logging.cc @@ -16,6 +16,7 @@ */ #include +#include #include #include #include