From b722284b543182ae9ac2a7fb18b3068a340abc3a Mon Sep 17 00:00:00 2001 From: hap Date: Sun, 11 Jun 2023 10:17:37 +0200 Subject: h8.8: remove erroneous "auto" --- src/devices/cpu/h8/h8.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/h8/h8.h b/src/devices/cpu/h8/h8.h index 81bb3b33563..2d92da051c6 100644 --- a/src/devices/cpu/h8/h8.h +++ b/src/devices/cpu/h8/h8.h @@ -38,8 +38,8 @@ public: template auto read_adc() { return m_read_adc[port].bind(); } template auto write_sci_tx() { return m_sci_tx[sci].bind(); } template auto write_sci_clk() { return m_sci_clk[sci].bind(); } - template auto sci_rx_w(int state) { m_sci[sci]->do_rx_w(state); } - template auto sci_clk_w(int state) { m_sci[sci]->do_clk_w(state); } + template void sci_rx_w(int state) { m_sci[sci]->do_rx_w(state); } + template void sci_clk_w(int state) { m_sci[sci]->do_clk_w(state); } void sci_set_external_clock_period(int sci, const attotime &period) { m_sci[sci].finder_target().first.subdevice(m_sci[sci].finder_target().second)->do_set_external_clock_period(period); -- cgit v1.2.3