From 6f79a6381fc25893bce65f4bc0043a9639ec8885 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Tue, 10 Jun 2025 10:50:39 -0700 Subject: [PATCH] Fix clang-tidy modernize-use-transparent-functors warnings in headers --- src/RuleMatcher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RuleMatcher.h b/src/RuleMatcher.h index 6302731d87..5fafb679b3 100644 --- a/src/RuleMatcher.h +++ b/src/RuleMatcher.h @@ -266,7 +266,7 @@ public: * Ordered from greatest to least strength. Matches of the same strength * will be in the set in lexicographic order of the MIME type string. */ - using MIME_Matches = std::map, std::greater>; + using MIME_Matches = std::map, std::greater<>>; /** * Matches a chunk of data against file magic signatures.