| 240 | }; |
| 241 | |
| 242 | struct ImageData final |
| 243 | { |
| 244 | ~ImageData() |
| 245 | { |
| 246 | if (Image) |
| 247 | { |
| 248 | bimg::imageFree(Image.get()); |
| 249 | } |
| 250 | } |
| 251 | std::unique_ptr<bimg::ImageContainer> Image; |
| 252 | }; |
| 253 | |
| 254 | struct ProgramData final |
| 255 | { |
nothing calls this directly
no outgoing calls
no test coverage detected