diff options
author | 2015-12-06 13:32:00 +0100 | |
---|---|---|
committer | 2015-12-06 13:32:00 +0100 | |
commit | a558fcefef371ca99831ecead6baaa988355e7af (patch) | |
tree | b90b6a3e2c0febbfdb7efba1d4103d5a7c235260 /src/devices/machine/linflash.h | |
parent | 866f0b6805511e8863d7dee9bdb4db65d20da443 (diff) |
override for for macros that could not be auto recognized by tools (nw)
Diffstat (limited to 'src/devices/machine/linflash.h')
-rw-r--r-- | src/devices/machine/linflash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/linflash.h b/src/devices/machine/linflash.h index 4d395f6d7e5..e6acfcf4ef3 100644 --- a/src/devices/machine/linflash.h +++ b/src/devices/machine/linflash.h @@ -15,8 +15,8 @@ class linear_flash_pccard_device : public device_t, public device_slot_card_interface { public: - virtual DECLARE_READ16_MEMBER(read_memory); - virtual DECLARE_WRITE16_MEMBER(write_memory); + virtual DECLARE_READ16_MEMBER(read_memory) override; + virtual DECLARE_WRITE16_MEMBER(write_memory) override; protected: linear_flash_pccard_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock,const char *shortname, const char *source); |