summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-05-23 17:41:54 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-05-23 17:41:54 -0400
commit23e8c957e839a7e2d76f38132258490ed1f20d03 (patch)
tree22ed1a2c187a23ba45263bc95e889e60cb4ce4ad /src/devices/bus
parentcafc14013a1854add8da59821e1fc9117e3966d9 (diff)
Fix clang error: private field 'pc11_regnames' is not used [-Werror,-Wunused-private-field] (nw)
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/qbus/pc11.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/bus/qbus/pc11.cpp b/src/devices/bus/qbus/pc11.cpp
index fbe0a5c035e..bece8806b1d 100644
--- a/src/devices/bus/qbus/pc11.cpp
+++ b/src/devices/bus/qbus/pc11.cpp
@@ -58,6 +58,7 @@ pc11_device::pc11_device(const machine_config &mconfig, const char *tag, device_
, m_rxvec(070)
, m_txvec(074)
{
+ (void)pc11_regnames;
}