Add g++/clang warnings to match some enabled by /W4 in MSVC.
This commit is contained in:
parent
83768cb541
commit
6d478956ac
4 changed files with 23 additions and 12 deletions
|
|
@ -170,16 +170,16 @@ void InitGlobalLock() { }
|
|||
void GetGlobalLock() { }
|
||||
void ReleaseGlobalLock() { }
|
||||
|
||||
void* OS_CreateThread(TThreadEntrypoint entry)
|
||||
void* OS_CreateThread(TThreadEntrypoint /*entry*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void OS_WaitForAllThreads(void* threads, int numThreads)
|
||||
void OS_WaitForAllThreads(void* /*threads*/, int /*numThreads*/)
|
||||
{
|
||||
}
|
||||
|
||||
void OS_Sleep(int milliseconds)
|
||||
void OS_Sleep(int /*milliseconds*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue