Skip to content
Snippets Groups Projects
Verified Commit e4a74dde authored by Marcus Asteborg's avatar Marcus Asteborg Committed by Mark Harris
Browse files

Silence MSVC C4244 warning


When building with FLOAT_APPROX.

Signed-off-by: default avatarMark Harris <mark.hsj@gmail.com>
parent 24398751
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@ static OPUS_INLINE float celt_exp2(float x)
float f;
opus_uint32 i;
} res;
integer = floor(x);
integer = (int)floor(x);
if (integer < -50)
return 0;
frac = x-integer;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment