| 2190 | #else |
| 2191 | template<class T, class U> |
| 2192 | detail::string_comp_op_requirement<T, U> |
| 2193 | operator>(T const& lhs, U const& rhs) noexcept |
| 2194 | #endif |
| 2195 | { |
| 2196 | return detail::to_string_view(lhs) > detail::to_string_view(rhs); |
| 2197 | } |
| 2198 | |
| 2199 | } // namespace json |
| 2200 | } // namespace boost |
nothing calls this directly
no test coverage detected