1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Tag intended unused parameters.

This commit is contained in:
Thomas Harte 2021-10-29 06:21:02 -07:00
parent b952d73e83
commit f3e895f17c

View File

@ -67,11 +67,12 @@ void Blitter::set_minterms(uint16_t value) {
minterms_ = value & 0xff;
}
void Blitter::set_vertical_size(uint16_t value) {
void Blitter::set_vertical_size([[maybe_unused]] uint16_t value) {
LOG("Set vertical size " << PADHEX(4) << value);
// TODO. This is ECS only, I think. Ditto set_horizontal_size.
}
void Blitter::set_horizontal_size(uint16_t value) {
void Blitter::set_horizontal_size([[maybe_unused]] uint16_t value) {
LOG("Set horizontal size " << PADHEX(4) << value);
}