summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-12-02 04:47:54 +1100
committer Vas Crabb <vas@vastheman.com>2021-12-02 04:47:54 +1100
commitb44c58434230ec9f1f552d93110d37100effe278 (patch)
tree6269493419ef2e9e8796cbdcddc60f28c43a6889
parent759c54b27dc243053e97edb0a684b6887fbfc290 (diff)
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.
-rw-r--r--src/mame/drivers/comquest.cpp7
1 files changed, 1 insertions, 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<cpu_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);