diff options
author | 2016-01-11 09:18:43 +0100 | |
---|---|---|
committer | 2016-01-11 09:18:43 +0100 | |
commit | 36195292e370de0fb6b32085c105a236995ce36e (patch) | |
tree | 1fb147c3e21824272b60e4989f606bc9c206030c /src/devices/cpu/pdp8/pdp8.cpp | |
parent | 7c944fa3b02cd26dec3c27f1e6a4c0d33f462c4e (diff) | |
parent | 115db95642ad6d861aad63775b92350e0491f2dd (diff) |
Merge pull request #561 from ajrhacker/strings
Return std::string objects by value rather than pass by reference [ajrhacker]
Diffstat (limited to 'src/devices/cpu/pdp8/pdp8.cpp')
-rw-r--r-- | src/devices/cpu/pdp8/pdp8.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/cpu/pdp8/pdp8.cpp b/src/devices/cpu/pdp8/pdp8.cpp index 1ed24effe12..2679c7e9205 100644 --- a/src/devices/cpu/pdp8/pdp8.cpp +++ b/src/devices/cpu/pdp8/pdp8.cpp @@ -72,7 +72,6 @@ void pdp8_device::device_start() m_program = &space(AS_PROGRAM); // register our state for the debugger - std::string tempstr; state_add(STATE_GENPC, "GENPC", m_pc).noshow(); state_add(STATE_GENFLAGS, "GENFLAGS", m_l).callimport().callexport().formatstr("%1s").noshow(); state_add(PDP8_PC, "PC", m_pc).mask(0xfff); @@ -136,7 +135,7 @@ const address_space_config *pdp8_device::memory_space_config(address_spacenum sp // for the debugger //------------------------------------------------- -void pdp8_device::state_string_export(const device_state_entry &entry, std::string &str) +void pdp8_device::state_string_export(const device_state_entry &entry, std::string &str) const { switch (entry.index()) { |