| 118 | |
| 119 | |
| 120 | bool operator>(const Value::Scalar& left, const Value::Scalar& right) |
| 121 | { |
| 122 | return convertToFixed(left.value()) > convertToFixed(right.value()); |
| 123 | } |
| 124 | |
| 125 | |
| 126 | bool operator>=(const Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected