| 80 | |
| 81 | template <typename T> |
| 82 | static inline void selfinc(T &val) |
| 83 | { |
| 84 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support ++ operator."); |
| 85 | } |
| 86 | |
| 87 | template <typename T> |
| 88 | static inline void selfdec(T &val) |
no test coverage detected