Build error C2039
Unsolved
General and Desktop
-
hi
i'm new to qt. i have installed qt 5.5.1 for 32 bit windows 7 with microsoft visual studio 2012. I have cloned the source code of Qgroundcontrol through github desktop. when i try to build and compile the source code i am getting errrors as C2039 'isfinite' is not a member of namespace 'std' -
Probably you did not activate C++11 standard.
std::isfinite was invented in C++11, see http://en.cppreference.com/w/cpp/numeric/math/isfinite
I'm not sure, but probably VS2012 C++ compiler does not support C++11.
1/2