LibDraw: Make [gs]et_pixel arguments used

This commit is contained in:
joshua stein 2020-01-30 17:58:23 -06:00 committed by Andreas Kling
parent 9143208419
commit f5ecb31fc8
Notes: sideshowbarker 2024-07-19 09:37:56 +09:00

View file

@ -102,6 +102,8 @@ public:
template<Format>
Color get_pixel(int x, int y) const
{
(void)x;
(void)y;
ASSERT_NOT_REACHED();
}
@ -115,6 +117,8 @@ public:
template<Format>
void set_pixel(int x, int y, Color)
{
(void)x;
(void)y;
ASSERT_NOT_REACHED();
}