more fixes

This commit is contained in:
DarthArgus
2015-10-13 12:01:16 -05:00
parent 2a2b6dd4b7
commit e8c36ac70e
4 changed files with 2 additions and 6 deletions
@@ -46,8 +46,6 @@ ClockStamp Clock::getCurTime()
return ret;
#else
struct timeval tv;
int err;
err = gettimeofday(&tv, NULL);
return (static_cast<ClockStamp>(tv.tv_sec) * 1000 + static_cast<ClockStamp>(tv.tv_usec / 1000));
#endif
}