Adds many syntactically unnecessary parentheses to silence MSVC C4554.
The object code is unchanged.
This commit is contained in:
parent
be89c39587
commit
75d27803d5
9 changed files with 30 additions and 30 deletions
|
@ -76,7 +76,7 @@ opus_uint32 ec_tell_frac(ec_ctx *_this){
|
|||
encoder or decoder claims to have used 1 bit.*/
|
||||
nbits=_this->nbits_total<<BITRES;
|
||||
l=EC_ILOG(_this->rng);
|
||||
r=_this->rng>>l-16;
|
||||
r=_this->rng>>(l-16);
|
||||
for(i=BITRES;i-->0;){
|
||||
int b;
|
||||
r=r*r>>15;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue