mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
Remove obsolete ZEEK_FORWARD_DECLARE_NAMESPACED macros
This commit is contained in:
parent
8c4092a0ad
commit
4ad08172d0
121 changed files with 722 additions and 547 deletions
15
src/ID.h
15
src/ID.h
|
@ -13,14 +13,14 @@
|
|||
#include "zeek/Notifier.h"
|
||||
#include "zeek/TraverseTypes.h"
|
||||
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Func, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(RecordType, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(TableType, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(VectorType, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(EnumType, zeek);
|
||||
|
||||
namespace zeek {
|
||||
|
||||
class Func;
|
||||
class Val;
|
||||
class RecordType;
|
||||
class TableType;
|
||||
class VectorType;
|
||||
class EnumType;
|
||||
class Type;
|
||||
using TypePtr = IntrusivePtr<Type>;
|
||||
using RecordTypePtr = IntrusivePtr<RecordType>;
|
||||
|
@ -29,6 +29,7 @@ using VectorTypePtr = IntrusivePtr<VectorType>;
|
|||
using EnumTypePtr = IntrusivePtr<EnumType>;
|
||||
using ValPtr = IntrusivePtr<Val>;
|
||||
using FuncPtr = IntrusivePtr<Func>;
|
||||
|
||||
}
|
||||
|
||||
namespace zeek::detail {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue