diff options
author | Dan Willemsen <dwillemsen@google.com> | 2017-11-29 18:06:11 -0800 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2017-11-29 21:37:28 -0800 |
commit | 528f144e779dfd18b550d9176aecf36e1130f449 (patch) | |
tree | f8b8faf502550eabda14c99bcaffd4f3d25a205d /libutils/Threads.cpp | |
parent | 70fda27eb2a72958636c8026be7cc72881bdff25 (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.cpp | 4 |
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; |