///////////////////////////////////////////////////////////////////////////
| 1657 | |
| 1658 | //////////////////////////////////////////////////////////////////////////////// |
| 1659 | Variant Variant::operator*(const Variant& other) const { |
| 1660 | Variant left(*this); |
| 1661 | left *= other; |
| 1662 | return left; |
| 1663 | } |
| 1664 | |
| 1665 | //////////////////////////////////////////////////////////////////////////////// |
| 1666 | Variant& Variant::operator/=(const Variant& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected