mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-02 12:36:36 +00:00
NULL to nullptr
This commit is contained in:
+2
-2
@@ -410,12 +410,12 @@ public:
|
||||
}
|
||||
iterator.Advance();
|
||||
}
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool DoesQuestItemExist(uint32 itmID, int charges, bool flagItemForDeletion=false) {
|
||||
ItemInst* inst = FindQuestItemByID(itmID,charges,flagItemForDeletion);
|
||||
if ( inst != NULL )
|
||||
if ( inst != nullptr )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user