// RUN: %check_clang_tidy %s modernize-use-transparent-functors %t -- -- -std=c++14 namespace std { template struct remove_reference; template constexpr T &&forward(typename std::remove_reference::type &t); template constexpr T &&forward(typename std::remove_reference::type &&t); template struct plus { constexpr T operator()(const T &Lhs, const T &Rhs) const; }; template <> struct plus { template constexpr auto operator()(T &&Lhs, U &&Rhs) const -> decltype(forward(Lhs) + forward(Rhs)); }; template struct less { constexpr bool operator()(const T &Lhs, const T &Rhs) const; }; template <> struct less { template constexpr bool operator()(T &&Lhs, U &&Rhs) const; }; template struct logical_not { constexpr bool operator()(const T &Arg) const; }; template <> struct logical_not { template constexpr bool operator()(T &&Arg) const; }; template class allocator; template < class Key, class Compare = std::less<>, class Allocator = std::allocator> class set {}; template < class Key, class Compare = std::less, class Allocator = std::allocator> class set2 {}; template InputIt find_if(InputIt first, InputIt last, UnaryPredicate p); template void sort(RandomIt first, RandomIt last, Compare comp); class iterator {}; class string {}; } int main() { using std::set; using std::less; std::set> s; // CHECK-MESSAGES: :[[@LINE-1]]:17: warning: prefer transparent functors 'less<>' [modernize-use-transparent-functors] // CHECK-FIXES: {{^}} std::set> s;{{$}} set> s2; // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: prefer transparent functors // CHECK-FIXES: {{^}} set> s2;{{$}} set> s3; // CHECK-MESSAGES: :[[@LINE-1]]:12: warning: prefer transparent functors // CHECK-FIXES: {{^}} set> s3;{{$}} std::set> s4; std::set> s5; std::set>, std::less<>> s6; // CHECK-MESSAGES: :[[@LINE-1]]:21: warning: prefer transparent functors // CHECK-FIXES: {{^}} std::set>, std::less<>> s6;{{$}} std::iterator begin, end; sort(begin, end, std::less()); // CHECK-MESSAGES: :[[@LINE-1]]:20: warning: prefer transparent functors std::sort(begin, end, std::less<>()); find_if(begin, end, std::logical_not()); // CHECK-MESSAGES: :[[@LINE-1]]:23: warning: prefer transparent functors std::find_if(begin, end, std::logical_not<>()); using my_set = std::set>; // CHECK-MESSAGES: :[[@LINE-1]]:32: warning: prefer transparent functors // CHECK-FIXES: {{^}} using my_set = std::set>;{{$}} using my_set2 = std::set>; using my_less = std::less; find_if(begin, end, my_less()); // CHECK-MESSAGES: :[[@LINE-1]]:23: warning: prefer transparent functors std::set2 control; }