| 25 | constexpr constant<(v1*v2)> operator*(typed_constant<T1,v1>,typed_constant<T2,v2>) { return {};} |
| 26 | template <typename T1, T1 v1, typename T2, T2 v2> |
| 27 | constexpr constant<(v1%v2)> operator%(typed_constant<T1,v1>,typed_constant<T2,v2>) { return {};} |
| 28 | template <typename T1, T1 v1, typename T2, T2 v2> |
| 29 | constexpr constant<(v1==v2)> operator==(typed_constant<T1,v1>,typed_constant<T2,v2>) { return {};} |
| 30 | template <typename T1, T1 v1, typename T2, T2 v2> |
nothing calls this directly
no outgoing calls
no test coverage detected