| 106 | |
| 107 | |
| 108 | bool operator<(const Value::Scalar& left, const Value::Scalar& right) |
| 109 | { |
| 110 | return convertToFixed(left.value()) < convertToFixed(right.value()); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | bool operator<=(const Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected