| 138 | |
| 139 | |
| 140 | Value::Scalar operator-(const Value::Scalar& left, const Value::Scalar& right) |
| 141 | { |
| 142 | Value::Scalar result = left; |
| 143 | result -= right; |
| 144 | return result; |
| 145 | } |
| 146 | |
| 147 | |
| 148 | Value::Scalar& operator+=(Value::Scalar& left, const Value::Scalar& right) |
nothing calls this directly
no test coverage detected