summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-06-17 13:39:42 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-06-17 13:39:42 +0200
commit402ad8ef85bb643b45699714475c026488cd6470 (patch)
treeb5c37258e5b56e22ace0f776fd6c4c486b69dbab /src/emu/debug/debugcpu.h
parentd46955ca651445cbd83630d6852c3a2c3d9c0849 (diff)
small debugger cleanup (nw)
Diffstat (limited to 'src/emu/debug/debugcpu.h')
-rw-r--r--src/emu/debug/debugcpu.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/debug/debugcpu.h b/src/emu/debug/debugcpu.h
index 2acfba9ea67..af8cb57a2e4 100644
--- a/src/emu/debug/debugcpu.h
+++ b/src/emu/debug/debugcpu.h
@@ -606,7 +606,6 @@ private:
UINT64 get_frame(symbol_table &table, void *ref);
/* internal helpers */
- void exit();
void on_vblank(screen_device &device, bool vblank_state);
running_machine& m_machine;
@@ -617,7 +616,7 @@ private:
FILE * m_source_file; // script source file
- symbol_table * m_symtable; // global symbol table
+ std::unique_ptr<symbol_table> m_symtable; // global symbol table
bool m_within_instruction_hook;
bool m_vblank_occurred;