///////////////////////////////////////////////////////////////////////////
| 1365 | |
| 1366 | //////////////////////////////////////////////////////////////////////////////// |
| 1367 | Variant Variant::operator-(const Variant& other) const { |
| 1368 | Variant left(*this); |
| 1369 | left -= other; |
| 1370 | return left; |
| 1371 | } |
| 1372 | |
| 1373 | //////////////////////////////////////////////////////////////////////////////// |
| 1374 | Variant& Variant::operator+=(const Variant& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected