Fix clang error: private field 'm_filter_in' is not used [-Werror,-Wunused-private-field]

This commit is contained in:
AJR 2020-09-19 11:23:45 -04:00
parent 41c178d3f8
commit 2b4b99ec41

View File

@ -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;
}