mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
refactor(Core): replace NULL with nullptr (#4593)
This commit is contained in:
@@ -1274,11 +1274,11 @@ struct AttackPosition {
|
||||
{
|
||||
if (!val)
|
||||
{
|
||||
// _pos = NULL;
|
||||
// _pos = nullptr;
|
||||
_taken = false;
|
||||
return 0; // NULL
|
||||
return 0; // nullptr
|
||||
}
|
||||
return 0; // NULL
|
||||
return 0; // nullptr
|
||||
};
|
||||
Position _pos;
|
||||
bool _taken;
|
||||
|
||||
Reference in New Issue
Block a user