| 86 | |
| 87 | template <typename T> |
| 88 | static inline void selfdec(T &val) |
| 89 | { |
| 90 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support -- operator."); |
| 91 | } |
| 92 | |
| 93 | template <typename T> |
| 94 | static inline bool compare(const T &a, const T &b) |
no test coverage detected