| 345 | |
| 346 | template <typename T, typename U> |
| 347 | _CONSTEXPR14 bool SafeMultiplyTest() |
| 348 | { |
| 349 | U u = 2; |
| 350 | T result = 0; |
| 351 | return SafeMultiply((T)3, u, result); |
| 352 | } |
| 353 | |
| 354 | template <typename T, typename U> |
| 355 | _CONSTEXPR14 bool SafeDivideTest() |
nothing calls this directly
no test coverage detected