chore: use nullptr where possible in place of NULL

This commit is contained in:
sithlord48
2025-04-27 15:39:23 -04:00
committed by Nick Bolton
parent 60dc4c0cd8
commit 63d65bb47b
140 changed files with 1116 additions and 1101 deletions

View File

@ -24,7 +24,7 @@ ClientProxy1_4::ClientProxy1_4(const std::string &name, deskflow::IStream *strea
: ClientProxy1_3(name, stream, events),
m_server(server)
{
assert(m_server != NULL);
assert(m_server != nullptr);
}
ClientProxy1_4::~ClientProxy1_4()