fixed lint complaints
This commit is contained in:
parent
8d25f69e77
commit
8e572d417b
2 changed files with 1 additions and 3 deletions
|
@ -12,7 +12,6 @@
|
||||||
double
|
double
|
||||||
fmod(double x, double y)
|
fmod(double x, double y)
|
||||||
{
|
{
|
||||||
long i;
|
|
||||||
double val;
|
double val;
|
||||||
double frac;
|
double frac;
|
||||||
|
|
||||||
|
@ -27,7 +26,7 @@ fmod(double x, double y)
|
||||||
/*
|
/*
|
||||||
val = x / y;
|
val = x / y;
|
||||||
if (val > LONG_MIN && val < LONG_MAX) {
|
if (val > LONG_MIN && val < LONG_MAX) {
|
||||||
i = val;
|
long i = val;
|
||||||
return x - i * y;
|
return x - i * y;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -30,7 +30,6 @@ sinus(double x, int cos_flag)
|
||||||
0.27204790957888846175e-14
|
0.27204790957888846175e-14
|
||||||
};
|
};
|
||||||
|
|
||||||
double xsqr;
|
|
||||||
double y;
|
double y;
|
||||||
int neg = 1;
|
int neg = 1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue