c3c icon indicating copy to clipboard operation
c3c copied to clipboard

Compile time fmod evaluates to 0

Open cbuttner opened this issue 1 year ago • 1 comments

float f = 3.25;
io::printn(f % 1.0); // Prints 0.25
io::printn(3.25 % 1.0); // Prints 0
// assert(3.25 % 1.0 == 0.25); // Error: This expression will always be 'false'

cbuttner avatar May 16 '24 12:05 cbuttner

Should be fixed in both branches.

lerno avatar May 16 '24 12:05 lerno

Looks good.

cbuttner avatar Jun 06 '24 20:06 cbuttner