Until recently, lines similar to the following caused no problems in my project.
double test = 0, test2, test3;
test2 = 10/ test; //test2 = +Inf
test3 = test * test2; //test3 = NaN
Now, operations that evaluate to Inf or NaN are causing fatal Double faults.
If I just highlight an expression that evaluates to Inf or NaN, I get a Genral Protection fault and the debugger exits.
Oddly enough, PositiveInfinity() and NotANumber() work fine.
Does anyone know a way to get around this?