mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 21:56:22 +00:00
refactor(Core): apply clang-tidy modernize-use-nullptr (#3819)
This commit is contained in:
@@ -34,7 +34,7 @@ bool isHole(int holes, int i, int j)
|
||||
//
|
||||
ADT_file::ADT_file()
|
||||
{
|
||||
a_grid = 0;
|
||||
a_grid = nullptr;
|
||||
}
|
||||
|
||||
ADT_file::~ADT_file()
|
||||
@@ -44,7 +44,7 @@ ADT_file::~ADT_file()
|
||||
|
||||
void ADT_file::free()
|
||||
{
|
||||
a_grid = 0;
|
||||
a_grid = nullptr;
|
||||
FileLoader::free();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user