I needed to go into the Makefile in the build folder and manually replace -std=c++11 with -std=c++14 .
Fortunately, a Makefile is written only once when you add a kit to a project. I only had to do this once and could build in QtCreator as many times as I want.
So now I can use the Clang suite to take advantage of all the new features of C ++ 14. As a bonus, I can also use all the features of C ++ 17 if I manually set -std=c++1z to the Makefile. Cool!
source share