From 2b4b99ec41d69c9aea30d1e21628f2ce6ab4c28c Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 19 Sep 2020 11:23:45 -0400 Subject: Fix clang error: private field 'm_filter_in' is not used [-Werror,-Wunused-private-field] --- src/devices/sound/cem3394.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/sound/cem3394.cpp b/src/devices/sound/cem3394.cpp index b9f41cefad2..e0c74635648 100644 --- a/src/devices/sound/cem3394.cpp +++ b/src/devices/sound/cem3394.cpp @@ -150,6 +150,7 @@ cem3394_device::cem3394_device(const machine_config &mconfig, const char *tag, d m_pulse_width(0), m_inv_sample_rate(1.0/48000.0) { + (void)m_filter_in; } -- cgit v1.2.3