diff options
author | 2020-09-19 11:23:45 -0400 | |
---|---|---|
committer | 2020-09-19 11:23:45 -0400 | |
commit | 2b4b99ec41d69c9aea30d1e21628f2ce6ab4c28c (patch) | |
tree | c74d2cb1dd593c1edcc0d8d4b190469c13404652 /src | |
parent | 41c178d3f89654ff6802921cce63192e3ba20622 (diff) |
Fix clang error: private field 'm_filter_in' is not used [-Werror,-Wunused-private-field]
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/sound/cem3394.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |