Fix clang-tidy modernize-use-nullptr warnings

This commit is contained in:
Eduardo Almeida
2022-10-06 21:45:05 +00:00
parent be07b6487a
commit 4af0fe4b85
469 changed files with 1864 additions and 1864 deletions

View File

@@ -20,7 +20,7 @@
using namespace ns3;
TutorialApp::TutorialApp ()
: m_socket (0),
: m_socket (nullptr),
m_peer (),
m_packetSize (0),
m_nPackets (0),
@@ -33,7 +33,7 @@ TutorialApp::TutorialApp ()
TutorialApp::~TutorialApp ()
{
m_socket = 0;
m_socket = nullptr;
}
/* static */