I need to ask is there support for c++11 (making use of libaries as thread,chrono) in netbeans 7.1.1 .
I had this code :-
#include<thread>
#include<chrono>
while(true)
{
std::this_thread::sleep_for(std::chrono::seconds(1)); <- there is an error at
"this_thread"
test4();
}
actually i am working on making something that calls this function after every minute(by this i mean when the system time changes by a minute )
thanks
You have to ask whether you compiler supports C++11, not your IDE.
Well, for g++, it supports most of c++11 features in its 4.7 release.