The remaining nulls

This commit is contained in:
Tim Wojtulewicz 2020-04-02 11:13:07 -07:00
parent 41c3256faa
commit 0a47588d0b
80 changed files with 565 additions and 565 deletions

View file

@ -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;
}