///////////////////////////////////////////////////////////////////////////
| 1518 | |
| 1519 | //////////////////////////////////////////////////////////////////////////////// |
| 1520 | Variant Variant::operator+(const Variant& other) const { |
| 1521 | Variant left(*this); |
| 1522 | left += other; |
| 1523 | return left; |
| 1524 | } |
| 1525 | |
| 1526 | //////////////////////////////////////////////////////////////////////////////// |
| 1527 | Variant& Variant::operator*=(const Variant& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected