How to set Qt Creator Intellisense for C++14?
Solved
General and Desktop
-
How do I configure Qt Creator's Intellisense parser to use rules for C++14? I'm using Qt Creator 4.9.2. Thanks.
-
I believe if you set the options in your pro for C++14 instead of C++11, then it should "just work". I am using a later version of Qt Creator however. You should upgrade your creator version if you can.
CONFIG += c++11
to
CONFIG += c++14
3/3