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