refactor: replace remaining NULL
with nullptr
(#40053)
refactor: use nullptr everywhere
This commit is contained in:
parent
9d0e6d09f0
commit
04b2ba84cd
34 changed files with 98 additions and 93 deletions
|
@ -60,7 +60,7 @@ int main(int argc, char* argv[]) {
|
|||
|
||||
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
||||
uint32_t exec_path_size = 0;
|
||||
int rv = _NSGetExecutablePath(NULL, &exec_path_size);
|
||||
int rv = _NSGetExecutablePath(nullptr, &exec_path_size);
|
||||
if (rv != -1) {
|
||||
FatalError("_NSGetExecutablePath: get length failed.");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue