From 8af4b0b42a647c1ddd463d97c6c84ed4164798fe Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 30 Sep 2018 00:00:21 -0400 Subject: [PATCH] qx10kbd: Remove unused private variables to fix clang build (nw) --- src/mame/machine/qx10kbd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/machine/qx10kbd.h b/src/mame/machine/qx10kbd.h index a93a53aa80e..8070548c556 100644 --- a/src/mame/machine/qx10kbd.h +++ b/src/mame/machine/qx10kbd.h @@ -29,7 +29,7 @@ private: required_ioport_array<16> m_rows; required_device m_mcu; emu_timer *m_bit_timer; - u8 m_line, m_rxd, m_clk; + u8 m_rxd; int m_row, m_clk_state; };