| 132 | |
| 133 | |
| 134 | Value::Scalar operator-(const Value::Scalar& left, const Value::Scalar& right) |
| 135 | { |
| 136 | Value::Scalar result = left; |
| 137 | result -= right; |
| 138 | return result; |
| 139 | } |
| 140 | |
| 141 | |
| 142 | Value::Scalar& operator+=(Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected