mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Switch to a more idiomatic way of silencing unused variable warnings in
release builds. Silences clang's -Wself-assign. llvm-svn: 150942
This commit is contained in:
parent
132aecc08e
commit
d4b1931dd9
@ -209,7 +209,8 @@ private:
|
||||
waitFor = 0;
|
||||
|
||||
int result = pthread_cond_broadcast( &condition );
|
||||
assert(result == 0); result=result;
|
||||
(void)result;
|
||||
assert(result == 0);
|
||||
}
|
||||
|
||||
size_t n;
|
||||
|
Loading…
x
Reference in New Issue
Block a user