Fix clang error: private field 'm_dma_address' is not used [-Werror,-Wunused-private-field] (nw)

This commit is contained in:
AJR 2019-02-12 09:25:44 -05:00
parent a035eafdfe
commit 24b48a9fa8

View File

@ -44,6 +44,7 @@ jazz_mct_adr_device::jazz_mct_adr_device(const machine_config &mconfig, const ch
, m_dma_r{ *this, *this, *this, *this }
, m_dma_w{ *this, *this, *this, *this }
{
(void)m_dma_address;
}
void jazz_mct_adr_device::map(address_map &map)