I\'m currently using C++11 features in my Qt applications. However, I\'d like to use some of the new C++14 features in my applications.
To enable C++11 in a Qt appli
Qt Creator is just an IDE.
You can think of IDEs as "smarter text editors" that aid the developer with debugging, building, code completion, file management and so on.
IDEs are irrelevant during compilation.
What matters is your compiler. And it is independent from your IDE.
g++ 4.8.x does not support many C++14 features: check out this page to learn what C++14 features are supported.