Util: Fix warning on Windows

This commit is contained in:
Jeffrey Pfau 2015-06-13 05:09:23 -07:00
parent 68c183e4bf
commit 857fc21d21
1 changed files with 1 additions and 0 deletions

View File

@ -159,6 +159,7 @@ static inline int ThreadJoin(Thread thread) {
}
static inline int ThreadSetName(const char* name) {
UNUSED(name);
return -1;
}
#else