| 32 | namespace operators { |
| 33 | template <typename T> |
| 34 | static inline var add(const T &lhs, const var &rhs) |
| 35 | { |
| 36 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support + operator."); |
| 37 | } |
| 38 | |
| 39 | template <typename T> |
| 40 | static inline var sub(const T &lhs, const var &rhs) |
no test coverage detected