| 94 | |
| 95 | |
| 96 | bool operator==(const Value::Scalar& left, const Value::Scalar& right) |
| 97 | { |
| 98 | return convertToFixed(left.value()) == convertToFixed(right.value()); |
| 99 | } |
| 100 | |
| 101 | |
| 102 | bool operator!=(const Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected