mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Move ID to the zeek::detail namespace
This commit is contained in:
parent
9992ec5c11
commit
0d623d003c
30 changed files with 221 additions and 182 deletions
|
@ -379,12 +379,12 @@ void Val::ValDescribeReST(ODesc* d) const
|
|||
|
||||
|
||||
#ifdef DEBUG
|
||||
ID* Val::GetID() const
|
||||
zeek::detail::ID* Val::GetID() const
|
||||
{
|
||||
return bound_id ? global_scope()->Find(bound_id).get() : nullptr;
|
||||
}
|
||||
|
||||
void Val::SetID(ID* id)
|
||||
void Val::SetID(zeek::detail::ID* id)
|
||||
{
|
||||
delete [] bound_id;
|
||||
bound_id = id ? copy_string(id->Name()) : nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue