[*] link errors

This commit is contained in:
Reece Wilson 2023-03-22 16:59:21 +00:00
parent 184ef34838
commit 440b5877b2
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ namespace Aurora::Threading::Primitives
auline AuSPtr<IConditionMutex> GetMutex() override;
auline bool WaitForSignal(AuUInt32 timeout) override;
auline bool WaitForSignalNS(AuUInt64 qwTimeout);
bool WaitForSignalNS(AuUInt64 qwTimeout);
auline void Signal() override;
auline void Broadcast() override;

View File

@ -45,7 +45,7 @@ namespace Aurora::Time
ADD_CLOCK(Steady, eSteady, SteadyClockJiffies, SteadyClockNS, SteadyClockMS);
ADD_CLOCK(Wall, eWall, FILE_AND_USR_DIR_STEP + AuUInt64, CurrentClockNS, CurrentClockMS);
ADD_CLOCK(ProcTime, eProcessTime, HighResClockJiffies, HighResClockNS, HighResClockMS);
ADD_CLOCK(Process, eProcessTime, HighResClockJiffies, HighResClockNS, HighResClockMS);
#undef FILE_AND_USR_DIR_STEP
#undef ADD_CLOCK