Ifdef the rint function out for platforms other than Windows (temporary).

This commit is contained in:
Peter.VanderBeken%pandora.be 2000-05-02 21:53:37 +00:00
parent 80719a03c9
commit 0924c6ea33

View File

@ -60,6 +60,7 @@ NumberFunctionCall::NumberFunctionCall(short type) : FunctionCall() {
}
} //-- NumberFunctionCall
#ifdef WINDOWS
static double rint(double r)
{
double integerPart = 0;
@ -70,6 +71,7 @@ static double rint(double r)
return integerPart;
}
#endif
/**
* Evaluates this Expr based on the given context node and processor state