| 112 | |
| 113 | |
| 114 | bool operator<=(const Value::Scalar& left, const Value::Scalar& right) |
| 115 | { |
| 116 | return convertToFixed(left.value()) <= convertToFixed(right.value()); |
| 117 | } |
| 118 | |
| 119 | |
| 120 | bool operator>(const Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected