From 23e8c957e839a7e2d76f38132258490ed1f20d03 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 23 May 2020 17:41:54 -0400 Subject: [PATCH] Fix clang error: private field 'pc11_regnames' is not used [-Werror,-Wunused-private-field] (nw) --- src/devices/bus/qbus/pc11.cpp | 1 + 1 file changed, 1 insertion(+) 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; }