You might want to upgrade to a newer version of VS, the express editions are free. I work on Unix, but occasionally build things on Windows.
I'm looking at the missing isnan in the std namespace. This is one of the things which compilers don't always agree on. std::isnan is only supported in C++11, which is newer than your 2010 compiler.
The <cmath> vs <math> issue assumes you have a C++11 compiler.
|