///////////////////////////////////////////////////////////////////////////
| 1771 | |
| 1772 | //////////////////////////////////////////////////////////////////////////////// |
| 1773 | Variant Variant::operator/(const Variant& other) const { |
| 1774 | Variant left(*this); |
| 1775 | left /= other; |
| 1776 | return left; |
| 1777 | } |
| 1778 | |
| 1779 | //////////////////////////////////////////////////////////////////////////////// |
| 1780 | Variant& Variant::operator%=(const Variant& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected