From b44c58434230ec9f1f552d93110d37100effe278 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Thu, 2 Dec 2021 04:47:54 +1100 Subject: comquest.cpp: Fixed clang unused private data member warnings. There's commented-out code that uses m_data, but nothing at all uses the other members, and there's nothing to indicate what they're supposed to represent, so I removed them altogether. --- src/mame/drivers/comquest.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/mame/drivers/comquest.cpp b/src/mame/drivers/comquest.cpp index 1bab13d9976..e7704207bbc 100644 --- a/src/mame/drivers/comquest.cpp +++ b/src/mame/drivers/comquest.cpp @@ -67,12 +67,7 @@ protected: private: required_device m_maincpu; - uint8_t m_data[128][8]; - void *m_timer; - int m_line; - int m_dma_activ; - int m_state; - int m_count; + [[maybe_unused]] uint8_t m_data[128][8]; [[maybe_unused]] uint8_t comquest_read(offs_t offset); [[maybe_unused]] void comquest_write(offs_t offset, uint8_t data); -- cgit v1.2.3