summaryrefslogtreecommitdiff
path: root/libutils/Threads.cpp
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-11-29 18:06:11 -0800
committerDan Willemsen <dwillemsen@google.com>2017-11-29 21:37:28 -0800
commit528f144e779dfd18b550d9176aecf36e1130f449 (patch)
treef8b8faf502550eabda14c99bcaffd4f3d25a205d /libutils/Threads.cpp
parent70fda27eb2a72958636c8026be7cc72881bdff25 (diff)
Fix / suppress new unused warnings for mingw+clang
Bug: 69933068 Test: mmma system/core Change-Id: I089166a979d3d8c5ada38a7745d507b555048499
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()
mState = (void*) hMutex;
}
-Mutex::Mutex(const char* name)
+Mutex::Mutex(const char* /*name*/)
{
// XXX: name not used for now
HANDLE hMutex;
@@ -359,7 +359,7 @@ Mutex::Mutex(const char* name)
mState = (void*) hMutex;
}
-Mutex::Mutex(int type, const char* name)
+Mutex::Mutex(int /*type*/, const char* /*name*/)
{
// XXX: type and name not used for now
HANDLE hMutex;