mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +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/Debug.h
15
src/Debug.h
|
@ -11,14 +11,9 @@
|
|||
#include "zeek/StmtEnums.h"
|
||||
#include "zeek/util.h"
|
||||
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Frame, zeek::detail);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Stmt, zeek::detail);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(DbgBreakpoint, zeek::detail);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(DbgWatch, zeek::detail);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(DbgDisplay, zeek::detail);
|
||||
|
||||
namespace zeek {
|
||||
|
||||
class Val;
|
||||
template <class T> class IntrusivePtr;
|
||||
using ValPtr = zeek::IntrusivePtr<Val>;
|
||||
|
||||
|
@ -26,6 +21,12 @@ extern std::string current_module;
|
|||
|
||||
namespace detail {
|
||||
|
||||
class Frame;
|
||||
class Stmt;
|
||||
class DbgBreakpoint;
|
||||
class DbgWatch;
|
||||
class DbgDisplay;
|
||||
|
||||
// This needs to be defined before we do the includes that come after it.
|
||||
enum ParseLocationRecType { PLR_UNKNOWN, PLR_FILE_AND_LINE, PLR_FUNCTION };
|
||||
class ParseLocationRec {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue