| 14 | |
| 15 | template <typename T, typename U> |
| 16 | void TestCasts() |
| 17 | { |
| 18 | SafeInt<T> st; |
| 19 | U u = st; |
| 20 | bool b = st; |
| 21 | #if !defined SAFEINT_VS_VERSION |
| 22 | float f = st; |
| 23 | double d = st; |
| 24 | long double ld = st; |
| 25 | #endif |
| 26 | u++; |
| 27 | } |
| 28 | |
| 29 | template <typename T, typename U> |
| 30 | void TestConstructors() |
nothing calls this directly
no outgoing calls
no test coverage detected