| 168 | #if CPLUSPLUS_STD == CPLUSPLUS_14 |
| 169 | template <typename T, typename U> |
| 170 | _CONSTEXPR14 T DivOperator() |
| 171 | { |
| 172 | // Have to explicitly force this operator |
| 173 | // to be used |
| 174 | T lhs = 3; |
| 175 | SafeInt<U> s(2); |
| 176 | |
| 177 | T& r = operator /=(lhs, s); |
| 178 | return r; |
| 179 | } |
| 180 | |
| 181 | template <typename T, typename U> |
| 182 | _CONSTEXPR14 T AddOperator() |
nothing calls this directly
no outgoing calls
no test coverage detected