mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
refactor(Core): replace NULL with nullptr (#4593)
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
namespace VMAP
|
||||
{
|
||||
IVMapManager* gVMapManager = NULL;
|
||||
IVMapManager* gVMapManager = nullptr;
|
||||
|
||||
//===============================================
|
||||
// just return the instance
|
||||
@@ -25,6 +25,6 @@ namespace VMAP
|
||||
void VMapFactory::clear()
|
||||
{
|
||||
delete gVMapManager;
|
||||
gVMapManager = NULL;
|
||||
gVMapManager = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user