mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Replace uses of the old Dict generation code with new template versions
This commit is contained in:
parent
e2feec52be
commit
50943a580c
26 changed files with 62 additions and 94 deletions
|
@ -31,7 +31,6 @@ struct ParseLocationRec {
|
|||
class StmtLocMapping;
|
||||
declare(PQueue,StmtLocMapping);
|
||||
typedef PQueue(StmtLocMapping) Filemap; // mapping for a single file
|
||||
declare(PDict,Filemap);
|
||||
|
||||
class DbgBreakpoint;
|
||||
class DbgWatch;
|
||||
|
@ -178,7 +177,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 PDict<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)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue