| 293 | |
| 294 | template <typename T, typename U> |
| 295 | _CONSTEXPR14 U XorOperator2() |
| 296 | { |
| 297 | // Have to explicitly force this operator |
| 298 | // to be used |
| 299 | U lhs = 3; |
| 300 | SafeInt<T> s(1); |
| 301 | |
| 302 | SafeInt<T> r = operator ^(lhs, s); |
| 303 | return r; |
| 304 | } |
| 305 | |
| 306 | template <typename T, typename U> |
| 307 | _CONSTEXPR14 T OrOperator() |
nothing calls this directly
no outgoing calls
no test coverage detected