Browse Source

math: remove an unused variable from modfl

Szabolcs Nagy 11 năm trước cách đây
mục cha
commit
b9cd1d4d50
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      src/math/modfl.c

+ 0 - 1
src/math/modfl.c

@@ -14,7 +14,6 @@ long double modfl(long double x, long double *iptr)
 long double modfl(long double x, long double *iptr)
 {
 	union ldshape u = {x};
-	uint64_t mask;
 	int e = (u.i.se & 0x7fff) - 0x3fff;
 	int s = u.i.se >> 15;
 	long double absx;