sgi_ge5.cpp: Fix clang error: private field 'm_dma_count' is not used [-Werror,-Wunused-private-field] (nw)

This commit is contained in:
AJR 2019-08-29 22:42:51 -04:00
parent 20a5ea109f
commit cb8c159092

View File

@ -40,6 +40,7 @@ sgi_ge5_device::sgi_ge5_device(machine_config const &mconfig, char const *tag, d
, m_re_w(*this)
, m_icount(0)
{
(void)m_dma_count;
}
void sgi_ge5_device::device_add_mconfig(machine_config &config)