Change NULLs to nullptrs.
This commit is contained in:
parent
63b1453dd8
commit
8a62423970
24 changed files with 115 additions and 115 deletions
|
@ -77,7 +77,7 @@
|
|||
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
|
||||
if (localtime_s(result, clock) == 0)
|
||||
return result;
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue