mirror of
https://github.com/holub/mame
synced 2025-05-17 11:15:06 +03:00
Fix clang error: private field 'm_pcmask' is not used [-Werror,-Wunused-private-field] (nw)
This commit is contained in:
parent
9e122168ef
commit
4b0fc55619
@ -112,7 +112,6 @@ private:
|
|||||||
void stream_gen(std::ostream &stream, u8 gen_addr, u8 op_len, offs_t &pc, const data_buffer &opcodes);
|
void stream_gen(std::ostream &stream, u8 gen_addr, u8 op_len, offs_t &pc, const data_buffer &opcodes);
|
||||||
|
|
||||||
u32 m_base_pc;
|
u32 m_base_pc;
|
||||||
unsigned m_pcmask;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -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),
|
device_rom_interface(mconfig, *this, 25+2, ENDIANNESS_LITTLE, 32),
|
||||||
m_meg(*this, "meg")
|
m_meg(*this, "meg")
|
||||||
{
|
{
|
||||||
|
(void)m_map;
|
||||||
}
|
}
|
||||||
|
|
||||||
void swp30_device::device_add_mconfig(machine_config &config)
|
void swp30_device::device_add_mconfig(machine_config &config)
|
||||||
|
Loading…
Reference in New Issue
Block a user