mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
The remaining nulls
This commit is contained in:
parent
41c3256faa
commit
0a47588d0b
80 changed files with 565 additions and 565 deletions
|
@ -129,7 +129,7 @@ protected:
|
|||
*/
|
||||
class EncapsulationStack {
|
||||
public:
|
||||
EncapsulationStack() : conns(0)
|
||||
EncapsulationStack() : conns(nullptr)
|
||||
{}
|
||||
|
||||
EncapsulationStack(const EncapsulationStack& other)
|
||||
|
@ -137,7 +137,7 @@ public:
|
|||
if ( other.conns )
|
||||
conns = new vector<EncapsulatingConn>(*(other.conns));
|
||||
else
|
||||
conns = 0;
|
||||
conns = nullptr;
|
||||
}
|
||||
|
||||
EncapsulationStack& operator=(const EncapsulationStack& other)
|
||||
|
@ -150,7 +150,7 @@ public:
|
|||
if ( other.conns )
|
||||
conns = new vector<EncapsulatingConn>(*(other.conns));
|
||||
else
|
||||
conns = 0;
|
||||
conns = nullptr;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue