mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Move all debugger code into the zeek::detail namespace
This commit is contained in:
parent
834b76f94f
commit
35c61697d9
17 changed files with 525 additions and 419 deletions
|
@ -2,7 +2,9 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
class Expr;
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(Expr, zeek::detail);
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
// Automatic displays: display these at each stoppage.
|
||||
class DbgDisplay {
|
||||
|
@ -23,3 +25,7 @@ protected:
|
|||
bool enabled;
|
||||
Expr* expression;
|
||||
};
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
||||
using DbgDisplay [[deprecated("Remove in v4.1. Use zeek::detail::DbgDisplay.")]] = zeek::detail::DbgDisplay;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue