mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
NULL to nullptr
This commit is contained in:
@@ -55,7 +55,7 @@ class TiXmlString
|
||||
TiXmlString ()
|
||||
{
|
||||
allocated = 0;
|
||||
cstring = NULL;
|
||||
cstring = nullptr;
|
||||
current_length = 0;
|
||||
}
|
||||
|
||||
@@ -184,7 +184,7 @@ class TiXmlString
|
||||
{
|
||||
if (cstring)
|
||||
delete [] cstring;
|
||||
cstring = NULL;
|
||||
cstring = nullptr;
|
||||
allocated = 0;
|
||||
current_length = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user