1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:27:45 +00:00

LibGfx: Remove the optional Error member from QOI's decoder context

This commit is contained in:
Timothy Flynn 2023-02-09 13:25:09 -05:00 committed by Linus Groh
parent bd4bddf31b
commit 142f327e63
2 changed files with 8 additions and 13 deletions

View file

@ -35,7 +35,6 @@ struct QOILoadingContext {
OwnPtr<AK::Stream> stream {};
QOIHeader header {};
RefPtr<Bitmap> bitmap;
Optional<Error> error;
};
class QOIImageDecoderPlugin final : public ImageDecoderPlugin {