Fix clang-tidy modernize-use-transparent-functors warnings in headers

This commit is contained in:
Tim Wojtulewicz 2025-06-10 10:50:39 -07:00
parent e613e7c304
commit 6f79a6381f

View file

@ -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<int, std::set<std::string>, std::greater<int>>;
using MIME_Matches = std::map<int, std::set<std::string>, std::greater<>>;
/**
* Matches a chunk of data against file magic signatures.