Hi, Can I just check my understanding is correct, in that the following example will not actually return a "strictfp" value, because the Math.exp() is not strictfp and by default is a non-strictfp Intrinsic inline implementation? Thanks Andrew
private strictfp double strictfpMathExp(double input)
{
return Math.exp(input);
}
