g_dbgfilemaps: Remove uses of PDict

This commit is contained in:
Tim Wojtulewicz 2019-07-26 13:23:56 -07:00 committed by Jon Siwek
parent a3deb0446c
commit d0e8af9343
4 changed files with 9 additions and 9 deletions

View file

@ -176,7 +176,7 @@ string get_context_description(const Stmt* stmt, const Frame* frame);
extern Frame* g_dbg_locals; // variables created within debugger context
extern PDict<Filemap> g_dbgfilemaps; // filename => filemap
extern std::map<string, Filemap*> g_dbgfilemaps; // filename => filemap
// Perhaps add a code/priority argument to do selective output.
int debug_msg(const char* fmt, ...) __attribute__ ((format (printf, 1, 2)));