mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
chore(ui): replace remaining NULLs with nullptr
This commit is contained in:
parent
d61f0faef1
commit
90403bfd29
7 changed files with 13 additions and 13 deletions
|
|
@ -27,11 +27,11 @@ CScriptObject* CScriptObject::GetScriptObjectByName(const char* name, int32_t ty
|
|||
if (v4 && v4->IsA(type)) {
|
||||
return v4;
|
||||
} else {
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
} else {
|
||||
lua_settop(L, -2);
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue