! an operator for changing the sign it's not changing 'this' but the changed value will be returned */
| 1652 | it's not changing 'this' but the changed value will be returned |
| 1653 | */ |
| 1654 | Int<value_size> operator-() const |
| 1655 | { |
| 1656 | Int<value_size> temp(*this); |
| 1657 | |
| 1658 | temp.ChangeSign(); |
| 1659 | |
| 1660 | return temp; |
| 1661 | } |
| 1662 | |
| 1663 | |
| 1664 | Int<value_size> operator-(const Int<value_size> & p2) const |
nothing calls this directly
no test coverage detected