I'm trying to use a threaded function for a parallel loop in a C++ program but I can't include <thread>
, it keeps giving me the error
fatal error C1083: Cannot open include file: 'thread': No such file or directory
I'm running visual studio 2010 express, x64 (with x64 compiler options) and I believe I'm running the newest version of everything (Windows SDK 7.1) but I can't find an option in the props page for compiler version. (closest i found was Platform Toolset which is set to v100)
See Question&Answers more detail:os