| 68 | |
| 69 | template <typename T> |
| 70 | static inline var minus(const T &val) |
| 71 | { |
| 72 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support -val operator."); |
| 73 | } |
| 74 | |
| 75 | template <typename T> |
| 76 | static inline var &escape(T &val) |
no test coverage detected