summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen2017-11-30 16:31:54 -0600
committerGerrit Code Review2017-11-30 16:31:54 -0600
commitf106bb6bb822740ea35b5974c2f137ef0a662648 (patch)
tree7eecb2039531d5448cee2b006f5fc5e493cc143b /libutils/Threads.cpp
parent017203b140f2d780fc5c6878bf35da930c9ae2a9 (diff)
parent528f144e779dfd18b550d9176aecf36e1130f449 (diff)
downloadplatform-system-core-f106bb6bb822740ea35b5974c2f137ef0a662648.tar.gz
platform-system-core-f106bb6bb822740ea35b5974c2f137ef0a662648.tar.xz
platform-system-core-f106bb6bb822740ea35b5974c2f137ef0a662648.zip
Merge "Fix / suppress new unused warnings for mingw+clang"
Diffstat (limited to 'libutils/Threads.cpp')
-rw-r--r--libutils/Threads.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libutils/Threads.cpp b/libutils/Threads.cpp
index 6317c32d4..7d7f0e283 100644
--- a/libutils/Threads.cpp
+++ b/libutils/Threads.cpp
@@ -348,7 +348,7 @@ Mutex::Mutex()
348 mState = (void*) hMutex; 348 mState = (void*) hMutex;
349} 349}
350 350
351Mutex::Mutex(const char* name) 351Mutex::Mutex(const char* /*name*/)
352{ 352{
353 // XXX: name not used for now 353 // XXX: name not used for now
354 HANDLE hMutex; 354 HANDLE hMutex;
@@ -359,7 +359,7 @@ Mutex::Mutex(const char* name)
359 mState = (void*) hMutex; 359 mState = (void*) hMutex;
360} 360}
361 361
362Mutex::Mutex(int type, const char* name) 362Mutex::Mutex(int /*type*/, const char* /*name*/)
363{ 363{
364 // XXX: type and name not used for now 364 // XXX: type and name not used for now
365 HANDLE hMutex; 365 HANDLE hMutex;