mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
Rename BroType to Type
This commit is contained in:
parent
c04d9cae45
commit
137e416a03
34 changed files with 367 additions and 359 deletions
|
@ -18,7 +18,7 @@ static void topk_element_hash_delete_func(void* val)
|
|||
delete e;
|
||||
}
|
||||
|
||||
void TopkVal::Typify(IntrusivePtr<zeek::BroType> t)
|
||||
void TopkVal::Typify(IntrusivePtr<zeek::Type> t)
|
||||
{
|
||||
assert(!hash && !type);
|
||||
type = std::move(t);
|
||||
|
|
|
@ -161,9 +161,9 @@ private:
|
|||
*
|
||||
* @param t type that is tracked
|
||||
*/
|
||||
void Typify(IntrusivePtr<zeek::BroType> t);
|
||||
void Typify(IntrusivePtr<zeek::Type> t);
|
||||
|
||||
IntrusivePtr<zeek::BroType> type;
|
||||
IntrusivePtr<zeek::Type> type;
|
||||
CompositeHash* hash;
|
||||
std::list<Bucket*> buckets;
|
||||
PDict<Element>* elementDict;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue