Adds many syntactically unnecessary parentheses to silence MSVC C4554.

The object code is unchanged.
This commit is contained in:
Gregory Maxwell 2011-08-30 14:02:41 -04:00
parent be89c39587
commit 75d27803d5
9 changed files with 30 additions and 30 deletions

View file

@ -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;