mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00
Replace uses of the old Queue/PQueue generation code with new template versions
This commit is contained in:
parent
776da8cb9e
commit
efa7dbf76b
5 changed files with 8 additions and 15 deletions
|
@ -12,9 +12,6 @@ using namespace std;
|
|||
#include "Queue.h"
|
||||
#include "DebugCmdConstants.h"
|
||||
|
||||
class DebugCmdInfo;
|
||||
declare(PQueue,DebugCmdInfo);
|
||||
|
||||
class DebugCmdInfo {
|
||||
public:
|
||||
DebugCmdInfo(const DebugCmdInfo& info);
|
||||
|
@ -47,7 +44,7 @@ protected:
|
|||
bool repeatable;
|
||||
};
|
||||
|
||||
extern PQueue(DebugCmdInfo) g_DebugCmdInfos;
|
||||
extern PQueue<DebugCmdInfo> g_DebugCmdInfos;
|
||||
|
||||
void init_global_dbg_constants ();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue