| 100 | |
| 101 | |
| 102 | bool operator<(const Value::Scalar& left, const Value::Scalar& right) |
| 103 | { |
| 104 | return convertToFixed(left.value()) < convertToFixed(right.value()); |
| 105 | } |
| 106 | |
| 107 | |
| 108 | bool operator<=(const Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected