From fc8e18d89312bb703297f92152a4eb5addace8a4 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 18 Jun 2016 11:07:39 +0200 Subject: tagged_list to unordered_map for debugger (nw) --- src/emu/debug/debugcmd.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/emu/debug/debugcmd.cpp') diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index ad1359baa28..4959f215caa 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -2823,12 +2823,12 @@ void debugger_commands::execute_symlist(int ref, int params, const char **param) } /* gather names for all symbols */ - for (symbol_entry &entry : symtable->entries()) + for (auto &entry : symtable->entries()) { /* only display "register" type symbols */ - if (!entry.is_function()) + if (!entry.second->is_function()) { - namelist[count++] = entry.name(); + namelist[count++] = entry.second->name(); if (count >= ARRAY_LENGTH(namelist)) break; } -- cgit v1.2.3