Fix up minimal build.

This commit is contained in:
James Grogan 2023-01-23 12:02:08 +00:00
parent 119ea6f2cc
commit 7b4ba9dd54
5 changed files with 15 additions and 14 deletions

View file

@ -42,6 +42,7 @@ std::unique_ptr<AbstractPainter> PainterFactory::Create(DrawingContext* context,
return std::make_unique<RasterPainter>(context);
}
#else
(void)drawMode;
return std::make_unique<RasterPainter>(context);
#endif
#endif