| 111 | } |
| 112 | |
| 113 | Int128 operator + (const Int128& rhs) const |
| 114 | { |
| 115 | Int128 result(*this); |
| 116 | result += rhs; |
| 117 | return result; |
| 118 | } |
| 119 | |
| 120 | Int128& operator -= (const Int128& rhs) |
| 121 | { |
nothing calls this directly
no outgoing calls
no test coverage detected