GH-1528: Remove broken Queue/PQueue class, replace with std::deque

This commit is contained in:
Tim Wojtulewicz 2021-04-27 13:25:02 -07:00
parent b44ae62ce4
commit 9dee652444
8 changed files with 22 additions and 21 deletions

View file

@ -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*>;