| 67 | return Add(s, img); |
| 68 | } |
| 69 | inline Image |
| 70 | operator-(const Image & img1, const Image & img2) |
| 71 | { |
| 72 | return Subtract(img1, img2); |
| 73 | } |
| 74 | inline Image |
| 75 | operator-(Image && img1, const Image & img2) |
| 76 | { |
nothing calls this directly
no outgoing calls
no test coverage detected