summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-12 09:25:44 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-12 09:25:51 -0500
commit24b48a9fa835b2bc9ab00fca2147508e7f5c6436 (patch)
tree26bf0afdefa238825a37c916f40798de07d024c7
parenta035eafdfef3b744d85ab905465e458e0a65eeb6 (diff)
Fix clang error: private field 'm_dma_address' is not used [-Werror,-Wunused-private-field] (nw)
-rw-r--r--src/mame/machine/jazz_mct_adr.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/machine/jazz_mct_adr.cpp b/src/mame/machine/jazz_mct_adr.cpp
index 1ae2c109d2b..8c330271709 100644
--- a/src/mame/machine/jazz_mct_adr.cpp
+++ b/src/mame/machine/jazz_mct_adr.cpp
@@ -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)