From fc529fa090c60961cb7021e9b501d9ec4f7f7e10 Mon Sep 17 00:00:00 2001 From: Nathan Glenn Date: Wed, 11 Sep 2024 14:57:25 -0500 Subject: [PATCH] Use more explicit nullptr instead of 0 --- Core/ClientSML/src/sml_ClientAgent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/ClientSML/src/sml_ClientAgent.cpp b/Core/ClientSML/src/sml_ClientAgent.cpp index 12b9300703..1188e80812 100644 --- a/Core/ClientSML/src/sml_ClientAgent.cpp +++ b/Core/ClientSML/src/sml_ClientAgent.cpp @@ -145,7 +145,7 @@ Agent::Agent(Kernel* pKernel, char const* pName) m_WorkingMemory.SetAgent(this) ; - m_pDPI = 0; + m_pDPI = nullptr; ClearError() ; } @@ -1880,7 +1880,7 @@ void Agent::ClearDebuggerProcessInformation() if (m_pDPI) { delete m_pDPI; - m_pDPI = 0; + m_pDPI = nullptr; } }