| 35 | |
| 36 | template <typename TAdaptedString1, typename TAdaptedString2> |
| 37 | enable_if_t<(TAdaptedString1::typeSortKey > TAdaptedString2::typeSortKey), int> |
| 38 | stringCompare(TAdaptedString1 s1, TAdaptedString2 s2) { |
| 39 | return -stringCompare(s2, s1); |
| 40 | } |
| 41 | |
| 42 | template <typename TAdaptedString1, typename TAdaptedString2> |
| 43 | enable_if_t<TAdaptedString1::typeSortKey <= TAdaptedString2::typeSortKey, bool> |
no outgoing calls
no test coverage detected