Fix clang error: private field 'm_pcmask' is not used [-Werror,-Wunused-private-field] (nw)

This commit is contained in:
AJR 2019-03-23 08:29:21 -04:00
parent 9e122168ef
commit 4b0fc55619
2 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,6 @@ private:
void stream_gen(std::ostream &stream, u8 gen_addr, u8 op_len, offs_t &pc, const data_buffer &opcodes);
u32 m_base_pc;
unsigned m_pcmask;
};
#endif

View File

@ -153,6 +153,7 @@ swp30_device::swp30_device(const machine_config &mconfig, const char *tag, devic
device_rom_interface(mconfig, *this, 25+2, ENDIANNESS_LITTLE, 32),
m_meg(*this, "meg")
{
(void)m_map;
}
void swp30_device::device_add_mconfig(machine_config &config)