| 50 | { return ScalarWithExceptions(*v-*other.v); } |
| 51 | |
| 52 | ScalarWithExceptions operator*(const ScalarWithExceptions& other) const |
| 53 | { return ScalarWithExceptions((*v)*(*other.v)); } |
| 54 | |
| 55 | ScalarWithExceptions& operator+=(const ScalarWithExceptions& other) |
| 56 | { *v+=*other.v; return *this; } |
nothing calls this directly
no test coverage detected