Add g++/clang warnings to match some enabled by /W4 in MSVC.

This commit is contained in:
LoopDawg 2016-07-18 10:11:05 -06:00
parent 83768cb541
commit 6d478956ac
4 changed files with 23 additions and 12 deletions

View file

@ -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*/)
{
}