Use nullptr (#816)

Changes applied by 'clang-modernize -use-nullptr [...]'
This commit is contained in:
J-P Nurmi
2015-02-25 09:19:28 +01:00
parent 26cc16caa7
commit 70c0ffb10b
38 changed files with 246 additions and 246 deletions

View File

@@ -29,7 +29,7 @@ bool CDebug::debug =
CDebugStream::~CDebugStream() {
timeval tTime;
gettimeofday(&tTime, NULL);
gettimeofday(&tTime, nullptr);
time_t tSec = (time_t)tTime.tv_sec; // some systems (e.g. openbsd) define tv_sec as long int instead of time_t
tm tM;
tzset();// localtime_r requires this