Possible Duplicate:
QT Creator, syntax checking for c++11
Is there any way to get C++11 autocompletion working in Qt creator? I added the following two lines to my .pro file, but autocompletion still doesn't work (though the code does compile correctly).
QMAKE_CXXFLAGS += "-std=c++11"
CXXFLAGS="-std=c++0x"
Below is some code I was writing. It builds and runs correctly. But when I type in std:: and press the autocomplete key, std::unique_ptr does not show up on the completion list.
#include <iostream>
#include <memory>
int main()
{
std::unique_ptr<int> i(new int);
*i = 1237;
std::cout << *i << std::endl;
return 0;
}
In addition, the syntax-completion doesn't seem to be working for C++11. Here's a screenshot I took. http://i.imgur.com/EoikO.png
