mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Get rid of unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
97be133ba2
commit
2b86b0e95c
@ -101,7 +101,7 @@ Mutex::~Mutex()
|
|||||||
{
|
{
|
||||||
pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
|
pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
|
||||||
assert(mutex != 0);
|
assert(mutex != 0);
|
||||||
int errorcode = pthread_mutex_destroy(mutex);
|
pthread_mutex_destroy(mutex);
|
||||||
assert(mutex != 0);
|
assert(mutex != 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user