Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into smem_str_const…
Browse files Browse the repository at this point in the history
…ants
  • Loading branch information
Aaron Mininger committed Sep 12, 2024
2 parents 419e60b + fc529fa commit bef2ee9
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 bef2ee9

Please sign in to comment.