| 337 | |
| 338 | template <typename T, typename U> |
| 339 | _CONSTEXPR14 bool SafeModulusTest() |
| 340 | { |
| 341 | U u = 2; |
| 342 | T result = 0; |
| 343 | return SafeModulus((T)3, u, result); |
| 344 | } |
| 345 | |
| 346 | template <typename T, typename U> |
| 347 | _CONSTEXPR14 bool SafeMultiplyTest() |
nothing calls this directly
no test coverage detected