| 118 | |
| 119 | template <typename T> |
| 120 | _CONSTEXPR11 T ConstConstructor() |
| 121 | { |
| 122 | // Constructors, also add in the useless unary + operator |
| 123 | return SafeInt<T>() + SafeInt<T>(1) + SafeInt<T>(false) + (+SafeInt<T>(3)); |
| 124 | } |
| 125 | |
| 126 | template <typename T> |
| 127 | _CONSTEXPR11 bool ConstBool() |
nothing calls this directly
no outgoing calls
no test coverage detected