summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pdp1/pdp1.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-11 09:58:36 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-11 09:58:36 +0100
commite96fd34dd817f1113daf9e6b099a8f40cfd1ed6d (patch)
tree47946e58943bae27864f42c807957876231a96ad /src/devices/cpu/pdp1/pdp1.cpp
parent02fb0d20846a4e55a06a9e3369a077a40ff8cb58 (diff)
remove const (nw)
Diffstat (limited to 'src/devices/cpu/pdp1/pdp1.cpp')
-rw-r--r--src/devices/cpu/pdp1/pdp1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/pdp1/pdp1.cpp b/src/devices/cpu/pdp1/pdp1.cpp
index cbb43535d7f..b36e7242967 100644
--- a/src/devices/cpu/pdp1/pdp1.cpp
+++ b/src/devices/cpu/pdp1/pdp1.cpp
@@ -737,7 +737,7 @@ void pdp1_device::state_export(const device_state_entry &entry)
}
-void pdp1_device::state_string_export(const device_state_entry &entry, std::string &str) const
+void pdp1_device::state_string_export(const device_state_entry &entry, std::string &str)
{
switch (entry.index())
{
/td> * Added VS2017 support into project files (nw) Miodrag Milanovic2016-11-161-2/+2 | * Fix UWP build issue (nw) Brad Hughes2016-11-161-1/+1 | * fix build (nw) Miodrag Milanovic2016-11-161-1/+1 | * UWP: Remove explicit links for winstore builds (nw) Brad Hughes2016-11-161-9/+3 | * fix mingw-clang linking for latest version (nw) Miodrag Milanovic2016-11-161-0/+4 | * Make 3rdparty compile for UWP and start adding new OSD for UWP based on ↵ Miodrag Milanovic2016-11-091-0/+6 | | | | previous Brad work (nw) * Finally sync with GENie, no more local changes (nw) Miodrag Milanovic2016-11-031-0/+4 | * Fix macOS build (nw) Miodrag Milanovic2016-11-021-3/+3 | * Experimental support for compiling to WebAssembly using Emscripten (not yet ↵ Justin Kerk2016-10-291-0/+5 | | | | working) (nw) * cleanup (nw) Miodrag Milanovic2016-10-071-19/+0 | * disable unknown-attributes & ignored_qualifiers to allow font_dwrite.cpp to ↵ smf-2016-09-171-0/+2 | | | | build with clang. (nw) * Add Lua-cleaning ability to srcclean Vas Crabb2016-08-301-1/+1 | * Cleanup for VS2015 build (nw) Miodrag Milanovic2016-08-281-0/+1 | * some C++14 features are not supported by VS2013. VS2015 is free for home use ↵ Miodrag Milanovic2016-08-271-1/+1 | | | | so no need for legacy support (nw) * Setting GCC bar bit higher (nw) Miodrag Milanovic2016-08-271-2/+2 | * Temporary fix for debug compile till we fix assert (nw) Miodrag Milanovic2016-08-271-0/+6 | * Change warning flags for Clang build (nw) AJR2016-08-251-9/+1 | | | | | | -Wno-missing-braces is unfortunately now necessary to avoid errors on almost every single use of the std::array initializer in devfind.h. (Apparently C++14 does make double braces optional for std::array initializers, but clang and GCC's -Wmissing-braces never took that into proper account, which is why GCC may still have it disabled by default.) Several other Clang-specific warnings have been undisabled; some might perhaps need to be locally reenabled if legacy 3rdparty code or sundry OSD includes happen to disagree with them. The only warning to require any code changes was -Wabsolute-value, which seems to have caught a minor render bug (and nothing more). * made proper formats compiled only if needed (nw) Miodrag Milanovic2016-08-121-0/+8 | * Attempt to prevent GCC optimising away global_alloc_clear (MT06335) Vas Crabb2016-07-301-4/+11 | * Add arch defines for Linux alpha and mips64el. Jordi Mallach2016-07-141-0/+12 | | | | | Add detection for Linux architectures alpha and mips64el, to avoid using gcc -m64, which isn't available on them. * damn circular deps (nw) Vas Crabb2016-06-261-0/+1 | * Fixed double hyphen in -pipe Julian Sikorski2016-06-141-1/+1 | * Sync GENie, one thing changed, and I have revoked one patch that is going to ↵ Miodrag Milanovic2016-06-101-2/+0 | | | | be removed or changed anyway (nw) * Synced GENie with latest and applied few changes sent as PR (nw) Miodrag Milanovic2016-06-101-0/+2 | * Fix git version [Vas Crabb] Vas Crabb2016-06-101-9/+0 | | | | | | | | * git version is set by top-level make, not just when GENie runs * can set IGNORE_GIT=1 for make to ignore git * git ignored/unavailable uses "unknown" in version string * mark modified trees as dirty * note that version now comes from makefile * Added initial ninja support to use add MAKETYPE=ninja to compile command ↵ Miodrag Milanovic2016-06-091-2/+2 | | | | | | line (nw) Custom build tasks are not yet working * support msbuild from posix shell Jeffrey Clark2016-05-311-1/+1 | | | | preliminary fastbuild support (experimental in genie) * disable BGFX debug info (nw) Miodrag Milanovic2016-05-241-1/+1 | * Added ability to create standalone emulators, added zexall as example (nw) Miodrag Milanovic2016-05-081-3/+8 | * Split UI and frontend part from core [Miodrag Milanovic] Miodrag Milanovic2016-04-231-0/+2 | * set GIT_VERSION only where it is used (nw)