| 92 | return Subtract(s, img); |
| 93 | } |
| 94 | inline Image |
| 95 | operator*(const Image & img1, const Image & img2) |
| 96 | { |
| 97 | return Multiply(img1, img2); |
| 98 | } |
| 99 | inline Image |
| 100 | operator*(Image && img1, const Image & img2) |
| 101 | { |
nothing calls this directly
no outgoing calls
no test coverage detected