| 92 | |
| 93 | template <typename T, typename U> |
| 94 | void ComparisonTestTU() |
| 95 | { |
| 96 | static bool b1 = LessThanTest<T, U>(); |
| 97 | static bool b2 = LessThanEqualTest<T, U>(); |
| 98 | static bool b3 = GreaterThanTest<T, U>(); |
| 99 | static bool b4 = GreaterThanEqualTest<T, U>(); |
| 100 | static bool b5 = EqualTest<T, U>(); |
| 101 | static bool b6 = NotEqualTest<T, U>(); |
| 102 | } |
| 103 | |
| 104 | template <typename T> void ComparisonTestT() |
| 105 | { |
nothing calls this directly
no outgoing calls
no test coverage detected