refactor(Core): replace NULL with nullptr (#4593)

This commit is contained in:
Kitzunu
2021-03-02 01:34:20 +01:00
committed by GitHub
parent dbefa17a53
commit 28f1dc5c0c
231 changed files with 923 additions and 923 deletions

View File

@@ -37,7 +37,7 @@ bool DBCStorageBase::Load(char const* path, char**& indexTable)
if (char* stringBlock = dbc.AutoProduceStrings(_fileFormat, _dataTable))
_stringPool.push_back(stringBlock);
// error in dbc file at loading if NULL
// error in dbc file at loading if nullptr
return indexTable != nullptr;
}