mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Move Frame and Scope to zeek::detail namespace
This commit is contained in:
parent
64332ca22c
commit
937a462e70
50 changed files with 306 additions and 257 deletions
|
@ -383,7 +383,7 @@ void Val::ValDescribeReST(ODesc* d) const
|
|||
#ifdef DEBUG
|
||||
detail::ID* Val::GetID() const
|
||||
{
|
||||
return bound_id ? global_scope()->Find(bound_id).get() : nullptr;
|
||||
return bound_id ? zeek::detail::global_scope()->Find(bound_id).get() : nullptr;
|
||||
}
|
||||
|
||||
void Val::SetID(detail::ID* id)
|
||||
|
@ -2331,7 +2331,7 @@ bool TableVal::CheckAndAssign(ValPtr index, ValPtr new_val)
|
|||
return Assign(std::move(index), std::move(new_val));
|
||||
}
|
||||
|
||||
void TableVal::InitDefaultFunc(Frame* f)
|
||||
void TableVal::InitDefaultFunc(zeek::detail::Frame* f)
|
||||
{
|
||||
// Value aready initialized.
|
||||
if ( def_val )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue