| 759 | // ------------------------------------------------ |
| 760 | |
| 761 | void Int::Abs() { |
| 762 | |
| 763 | if (IsNegative()) |
| 764 | Neg(); |
| 765 | |
| 766 | } |
| 767 | |
| 768 | // ------------------------------------------------ |
| 769 |
nothing calls this directly
no outgoing calls
no test coverage detected