diff --git a/Libraries/LibDraw/GraphicsBitmap.h b/Libraries/LibDraw/GraphicsBitmap.h index fb90c8625d..dd3ce8805c 100644 --- a/Libraries/LibDraw/GraphicsBitmap.h +++ b/Libraries/LibDraw/GraphicsBitmap.h @@ -102,6 +102,8 @@ public: template Color get_pixel(int x, int y) const { + (void)x; + (void)y; ASSERT_NOT_REACHED(); } @@ -115,6 +117,8 @@ public: template void set_pixel(int x, int y, Color) { + (void)x; + (void)y; ASSERT_NOT_REACHED(); }