Enable C ++ 14 support in CLion?

Is there a way to enable C ++ 14 in CLion? My code is currently compiling, but the syntax highlights a lot of lines as errors that are correct with C ++ 14. Is there a parameter that I can use or something to enable C ++ 14 support in the CLion editor?

Update: Any updates in CLion 1.2 regarding C ++ 14 support?

+5
source share
2 answers

Clion now supports C ++ 14. set(CMAKE_CXX_STANDARD 14) in CMakeLists.txt

+1
source

There is no progress so far. CLion 1.2 officially supports C ++ 11, but only with some missing features according to their web page. For the upcoming 1.5, for which the EAP program is open, there are still no additional C ++ 14 features. Currently, C ++ 14 features are not assigned to the developer or any version in the ticketing system. the roadmap for 1.5 says nothing about C ++ 14 support.

+4
source

All Articles