Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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
@fcarney I switched to version 5.5.0, and the problem does seem to be fixed now. Thanks!