From f5ecb31fc8183c699e8fc4834fd1f96195063a9b Mon Sep 17 00:00:00 2001 From: joshua stein Date: Thu, 30 Jan 2020 17:58:23 -0600 Subject: [PATCH] LibDraw: Make [gs]et_pixel arguments used --- Libraries/LibDraw/GraphicsBitmap.h | 4 ++++ 1 file changed, 4 insertions(+) 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(); }