Skip to content

Commit

Permalink
Use more explicit nullptr instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
garfieldnate committed Sep 11, 2024
1 parent 0518713 commit fc529fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/ClientSML/src/sml_ClientAgent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Agent::Agent(Kernel* pKernel, char const* pName)

m_WorkingMemory.SetAgent(this) ;

m_pDPI = 0;
m_pDPI = nullptr;

ClearError() ;
}
Expand Down Expand Up @@ -1880,7 +1880,7 @@ void Agent::ClearDebuggerProcessInformation()
if (m_pDPI)
{
delete m_pDPI;
m_pDPI = 0;
m_pDPI = nullptr;
}
}

Expand Down

0 comments on commit fc529fa

Please sign in to comment.