mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix lack of namespace qualification inside an include file.
This commit is contained in:
parent
94de54ee74
commit
7544aedb6a
1 changed files with 3 additions and 3 deletions
|
@ -384,7 +384,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* Constructor with a Frame argument.
|
* Constructor with a Frame argument.
|
||||||
*/
|
*/
|
||||||
explicit HookArgument(detail::Frame* f)
|
explicit HookArgument(zeek::detail::Frame* f)
|
||||||
{
|
{
|
||||||
type = FRAME;
|
type = FRAME;
|
||||||
arg.frame = f;
|
arg.frame = f;
|
||||||
|
@ -624,14 +624,14 @@ private:
|
||||||
const Event* event;
|
const Event* event;
|
||||||
const Connection* conn;
|
const Connection* conn;
|
||||||
const Func* func;
|
const Func* func;
|
||||||
const detail::Frame* frame;
|
const zeek::detail::Frame* frame;
|
||||||
int int_;
|
int int_;
|
||||||
const Val* val;
|
const Val* val;
|
||||||
const ValPList* vals;
|
const ValPList* vals;
|
||||||
const Args* args;
|
const Args* args;
|
||||||
const void* voidp;
|
const void* voidp;
|
||||||
const logging::WriterBackend::WriterInfo* winfo;
|
const logging::WriterBackend::WriterInfo* winfo;
|
||||||
const detail::Location* loc;
|
const zeek::detail::Location* loc;
|
||||||
const Packet* packet;
|
const Packet* packet;
|
||||||
} arg;
|
} arg;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue