| 104 | |
| 105 | template <typename T> |
| 106 | static inline bool undcmp(const T &lhs, const T &rhs) |
| 107 | { |
| 108 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support < operator."); |
| 109 | } |
| 110 | |
| 111 | template <typename T> |
| 112 | static inline bool aeqcmp(const T &lhs, const T &rhs) |
no test coverage detected