| 6 | // std::less |
| 7 | template <typename T = void> |
| 8 | struct less { |
| 9 | bool operator()(const T& lhs, const T& rhs) const { |
| 10 | return lhs < rhs; |
| 11 | } |
| 12 | }; |
| 13 | |
| 14 | // Specialization for void (to allow std::less<> with no arguments) |
| 15 | template <> |
nothing calls this directly
no outgoing calls
no test coverage detected