diff options
author | Rohit Nirmal <rohitnirmal9@gmail.com> | 2014-12-03 12:57:57 -0600 |
---|---|---|
committer | Rohit Nirmal <rohitnirmal9@gmail.com> | 2014-12-03 12:57:57 -0600 |
commit | 8a624239703c046d89ebeaf3ea13c87af75b550f (patch) | |
tree | 19546d2b06c71add6140f322a8aab0c918bbd9ca /src/common/platform.h | |
parent | 63b1453dd8f0f579929fe7341f559b916cebcc2b (diff) |
Change NULLs to nullptrs.
Diffstat (limited to 'src/common/platform.h')
-rw-r--r-- | src/common/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/platform.h b/src/common/platform.h index d9f095433c..53d98fe74c 100644 --- a/src/common/platform.h +++ b/src/common/platform.h @@ -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 |