diff options
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; |