Unary operators
| 5315 | |
| 5316 | // Unary operators |
| 5317 | bool operator !() const throw() { return (!m_int) ? true : false; } |
| 5318 | |
| 5319 | // operator + (unary) |
| 5320 | // note - normally, the '+' and '-' operators will upcast to a signed int |
nothing calls this directly
no outgoing calls
no test coverage detected