1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Defeat another -Wunused-but-set-variable warning

llvm-svn: 308484
This commit is contained in:
Hans Wennborg 2017-07-19 15:06:31 +00:00
parent 24563ac844
commit 46de941333

View File

@ -145,6 +145,7 @@ public:
waitFor = 0;
int result = pthread_cond_init( &condition, nullptr );
(void)result;
assert( result == 0 );
result = pthread_mutex_init( &mutex, nullptr );