mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 13:56:06 +00:00
Fix warnings about an variable only used in asserts.
llvm-svn: 203089
This commit is contained in:
parent
a8ff543c28
commit
de14dcc24f
@ -139,6 +139,7 @@ public:
|
||||
~WaitForThreads()
|
||||
{
|
||||
int result = pthread_cond_destroy( &condition );
|
||||
(void)result;
|
||||
assert( result == 0 );
|
||||
|
||||
result = pthread_mutex_destroy( &mutex );
|
||||
@ -149,6 +150,7 @@ public:
|
||||
void block()
|
||||
{
|
||||
int result = pthread_mutex_lock( &mutex );
|
||||
(void)result;
|
||||
assert( result == 0 );
|
||||
n ++;
|
||||
//~ std::cout << "block() n " << n << " waitFor " << waitFor << std::endl;
|
||||
@ -178,6 +180,7 @@ public:
|
||||
void releaseThreads( size_t num )
|
||||
{
|
||||
int result = pthread_mutex_lock( &mutex );
|
||||
(void)result;
|
||||
assert( result == 0 );
|
||||
|
||||
if ( n >= num ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user