Change NULL to nullptr

This commit is contained in:
Neo Kim 2015-07-06 15:34:32 +09:00
parent 69a4a438bb
commit a01f31c75c
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ double gettime()
long long getTimeInMilliseconds()
{
struct timeval tv;
gettimeofday (&tv, NULL);
gettimeofday (&tv, nullptr);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
}