mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-18 16:38:26 +00:00
NULL to nullptr
This commit is contained in:
@@ -42,7 +42,7 @@ TiXmlString::TiXmlString (const char* instring)
|
||||
if (!instring)
|
||||
{
|
||||
allocated = 0;
|
||||
cstring = NULL;
|
||||
cstring = nullptr;
|
||||
current_length = 0;
|
||||
return;
|
||||
}
|
||||
@@ -68,7 +68,7 @@ TiXmlString::TiXmlString (const TiXmlString& copy)
|
||||
if (! copy . allocated)
|
||||
{
|
||||
allocated = 0;
|
||||
cstring = NULL;
|
||||
cstring = nullptr;
|
||||
current_length = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user