chore(XML): modernization: use nullptr instead of 0

This commit is contained in:
Günter Obiltschnig
2024-09-26 09:14:44 +02:00
parent 3b4a8ea6e7
commit ce9c08a2d8
9 changed files with 44 additions and 44 deletions

View File

@@ -34,7 +34,7 @@ NamePoolTest::~NamePoolTest()
void NamePoolTest::testNamePool()
{
AutoPtr<NamePool> pool = new NamePool;
const Name* pName = 0;
const Name* pName = nullptr;
Name name("pre:local", "http://www.appinf.com");
pName = &pool->insert(name);