| 180 | |
| 181 | template <typename T, typename U> |
| 182 | _CONSTEXPR14 T AddOperator() |
| 183 | { |
| 184 | // Have to explicitly force this operator |
| 185 | // to be used |
| 186 | T lhs = 3; |
| 187 | SafeInt<U> s(2); |
| 188 | |
| 189 | T& r = operator +=(lhs, s); |
| 190 | return r; |
| 191 | } |
| 192 | |
| 193 | template <typename T, typename U> |
| 194 | _CONSTEXPR14 T SubOperator() |
nothing calls this directly
no outgoing calls
no test coverage detected