From 56903024dccd0e5ae4fae40925348416f989144b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 5 Feb 2021 14:18:46 +0100 Subject: [PATCH] Cleanup: Use transparent functor Resolves modernize-use-transparent-functors Clang-Tidy warning. Differential Revision: https://developer.blender.org/D10323 --- .clang-tidy | 1 - source/blender/blenlib/intern/string_search.cc | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index d06c7471323..b52d0f9ba46 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -41,7 +41,6 @@ Checks: > -modernize-pass-by-value, -modernize-raw-string-literal, -modernize-avoid-bind, - -modernize-use-transparent-functors, WarningsAsErrors: '*' CheckOptions: diff --git a/source/blender/blenlib/intern/string_search.cc b/source/blender/blenlib/intern/string_search.cc index d64587b85b4..a5983967542 100644 --- a/source/blender/blenlib/intern/string_search.cc +++ b/source/blender/blenlib/intern/string_search.cc @@ -446,7 +446,7 @@ int BLI_string_search_query(StringSearch *search, const char *query, void ***r_d for (const int score : result_indices_by_score.keys()) { found_scores.append(score); } - std::sort(found_scores.begin(), found_scores.end(), std::greater()); + std::sort(found_scores.begin(), found_scores.end(), std::greater<>()); /* Add results to output vector in correct order. First come the results with the best match * score. Results with the same score are in the order they have been added to the search. */