mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
migrated some raw pointers to smart pointers
This commit is contained in:
parent
c23ee30542
commit
1b2cd0c767
14 changed files with 74 additions and 113 deletions
|
@ -437,9 +437,8 @@ public:
|
|||
// ... and its name.
|
||||
std::string lambda_name;
|
||||
|
||||
// For "when" statements. Needs to be non-const so we can
|
||||
// Instantiate() it as needed.
|
||||
WhenInfo* wi;
|
||||
// For "when" statements.
|
||||
std::shared_ptr<WhenInfo> wi;
|
||||
|
||||
// A parallel array for the cat() built-in replacement.
|
||||
std::unique_ptr<CatArg>* cat_args = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue