mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
GH-1528: Remove broken Queue/PQueue class, replace with std::deque
This commit is contained in:
parent
b44ae62ce4
commit
9dee652444
8 changed files with 22 additions and 21 deletions
|
@ -5,9 +5,9 @@
|
|||
#include <vector>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <deque>
|
||||
|
||||
#include "zeek/Obj.h"
|
||||
#include "zeek/Queue.h"
|
||||
#include "zeek/StmtEnums.h"
|
||||
#include "zeek/util.h"
|
||||
|
||||
|
@ -38,7 +38,7 @@ public:
|
|||
};
|
||||
|
||||
class StmtLocMapping;
|
||||
using Filemap = PQueue<StmtLocMapping>; // mapping for a single file
|
||||
using Filemap = std::deque<StmtLocMapping*>; // mapping for a single file
|
||||
|
||||
using BPIDMapType = std::map<int, DbgBreakpoint*>;
|
||||
using BPMapType = std::multimap<const Stmt*, DbgBreakpoint*>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue