I am as new to C++ as someone can be. I have been given the task of installing a simulation, but I keep running into error codes. I was able to resolve most of them, but there is one I am not sure how to tackle.
The error code is C2668, and its description is:
"fpclassify': ambiguous call to overloaded function
Project is "Run Simulation" and File is corecrt_math.h on line 415.
Honestly, I'm not sure if any of the information I have given is of any use, and I'm not sure what information to provide. Maybe it would be better if you could ask me some questions and I can answer them to the best of my ability?
I have included a screenshot of my Visual Studio 19:
(Click image to enlarge)
Reproducible example (demo)
#include <cmath>
int main() {
std::isnan(1);
}
Expected outcome: That it compiles.
