diff options
author | 2016-01-11 09:58:36 +0100 | |
---|---|---|
committer | 2016-01-11 09:58:36 +0100 | |
commit | e96fd34dd817f1113daf9e6b099a8f40cfd1ed6d (patch) | |
tree | 47946e58943bae27864f42c807957876231a96ad /src/devices/cpu/hd61700/hd61700.h | |
parent | 02fb0d20846a4e55a06a9e3369a077a40ff8cb58 (diff) |
remove const (nw)
Diffstat (limited to 'src/devices/cpu/hd61700/hd61700.h')
-rw-r--r-- | src/devices/cpu/hd61700/hd61700.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/hd61700/hd61700.h b/src/devices/cpu/hd61700/hd61700.h index 838ea8833bb..6f99aeca899 100644 --- a/src/devices/cpu/hd61700/hd61700.h +++ b/src/devices/cpu/hd61700/hd61700.h @@ -92,7 +92,7 @@ protected: // device_state_interface overrides virtual void state_import(const device_state_entry &entry) override; - void state_string_export(const device_state_entry &entry, std::string &str) const override; + void state_string_export(const device_state_entry &entry, std::string &str) override; // device_memory_interface overrides virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override { return (spacenum == AS_PROGRAM) ? &m_program_config : nullptr; } |