| 117 | return Multiply(s, img); |
| 118 | } |
| 119 | inline Image |
| 120 | operator/(const Image & img1, const Image & img2) |
| 121 | { |
| 122 | return Divide(img1, img2); |
| 123 | } |
| 124 | inline Image |
| 125 | operator/(Image && img1, const Image & img2) |
| 126 | { |
nothing calls this directly
no outgoing calls
no test coverage detected