fix compilation on new installs of vs2019

This commit is contained in:
Luke Usher 2020-05-07 12:40:01 +01:00
parent f296636643
commit 0aa92e826a
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ std::mutex TimerMtx;
// Returns the current time of the timer
inline uint64_t GetTime_NS(TimerObject* Timer)
uint64_t GetTime_NS(TimerObject* Timer)
{
#ifdef _WIN32
LARGE_INTEGER li;

View File

@ -60,7 +60,7 @@ TimerObject* Timer_Create(TimerCB Callback, void* Arg, std::string Name, unsigne
void Timer_Start(TimerObject* Timer, uint64_t Expire_MS);
void Timer_Exit(TimerObject* Timer);
void Timer_ChangeExpireTime(TimerObject* Timer, uint64_t Expire_ms);
inline uint64_t GetTime_NS(TimerObject* Timer);
uint64_t GetTime_NS(TimerObject* Timer);
void Timer_Init();
#endif