Does VC++ 2010 Express not have std::thread? I am using the multi-threaded DLL. The compiler does not find the header file , nor does it recognize std::thread::hardware_concurrency. Is there some setting I need to fix, or is it just missing? (July 2012, latest and greatest.)
Does VC++ 2010 Express not have std::thread? I am using the multi-threaded DLL. The
Share
std::threadwas added in C++11 which is still relatively recent.VC++ 2010 doesn’t support it. But VC++ 2012 should have it.