///////////////////////////////////////////////////////////////////////////
| 1241 | |
| 1242 | //////////////////////////////////////////////////////////////////////////////// |
| 1243 | Variant Variant::operator^(const Variant& other) const { |
| 1244 | Variant left(*this); |
| 1245 | left ^= other; |
| 1246 | return left; |
| 1247 | } |
| 1248 | |
| 1249 | //////////////////////////////////////////////////////////////////////////////// |
| 1250 | Variant& Variant::operator-=(const Variant& other) { |
nothing calls this directly
no outgoing calls
no test coverage detected