Fix lack of namespace qualification inside an include file.

This commit is contained in:
Robin Sommer 2023-09-18 11:15:18 +02:00
parent 94de54ee74
commit 7544aedb6a
No known key found for this signature in database
GPG key ID: D8187293B3FFE5D0

View file

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