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/mcs96 | |
parent | 02fb0d20846a4e55a06a9e3369a077a40ff8cb58 (diff) |
remove const (nw)
Diffstat (limited to 'src/devices/cpu/mcs96')
-rw-r--r-- | src/devices/cpu/mcs96/mcs96.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/mcs96/mcs96.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mcs96/mcs96.cpp b/src/devices/cpu/mcs96/mcs96.cpp index 3c8284f8555..8c52a8c029d 100644 --- a/src/devices/cpu/mcs96/mcs96.cpp +++ b/src/devices/cpu/mcs96/mcs96.cpp @@ -128,7 +128,7 @@ void mcs96_device::state_export(const device_state_entry &entry) { } -void mcs96_device::state_string_export(const device_state_entry &entry, std::string &str) const +void mcs96_device::state_string_export(const device_state_entry &entry, std::string &str) { switch(entry.index()) { case STATE_GENFLAGS: diff --git a/src/devices/cpu/mcs96/mcs96.h b/src/devices/cpu/mcs96/mcs96.h index 0111361899c..ed9b64709ec 100644 --- a/src/devices/cpu/mcs96/mcs96.h +++ b/src/devices/cpu/mcs96/mcs96.h @@ -85,7 +85,7 @@ protected: // device_state_interface overrides virtual void state_import(const device_state_entry &entry) override; virtual void state_export(const device_state_entry &entry) override; - virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; + virtual void state_string_export(const device_state_entry &entry, std::string &str) override; // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const override; |