| 47 | } |
| 48 | |
| 49 | ScalarWithExceptions operator-(const ScalarWithExceptions& other) const |
| 50 | { return ScalarWithExceptions(*v-*other.v); } |
| 51 | |
| 52 | ScalarWithExceptions operator*(const ScalarWithExceptions& other) const |
| 53 | { return ScalarWithExceptions((*v)*(*other.v)); } |
nothing calls this directly
no test coverage detected