fix compilation on new installs of vs2019
This commit is contained in:
parent
f296636643
commit
0aa92e826a
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue