///////////////////////////////////////////////////////////////////////////
| 1853 | |
| 1854 | //////////////////////////////////////////////////////////////////////////////// |
| 1855 | Variant Variant::operator%(const Variant& other) const { |
| 1856 | Variant left(*this); |
| 1857 | left %= other; |
| 1858 | return left; |
| 1859 | } |
| 1860 | |
| 1861 | //////////////////////////////////////////////////////////////////////////////// |
| 1862 | Variant::operator std::string() const { |
nothing calls this directly
no outgoing calls
no test coverage detected