What`s new in C++14

closed account (EwCjE3v7)
What is new in C++14.

Does anyone have a link as when I search on google it gives me a wikipedia page that never ends.

And how can you get those features? What compilers support some/most/all of them?
I'll answer your second question first: By way of C++14 compiler support, I'm pretty sure that Clang and libc++ have the most - see http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html#id1 . There is also this ( http://cpprocks.com/c1114-compiler-and-library-shootout/ ) article from a bit ago giving a general completion rate for the features in all the major compilers.

As for what is new, there isn't actually all that much. I haven't found a definitive list, but a brief summary can be found at http://isocpp.org/wiki/faq/ (look for the 'C++14' section).
Last edited on
This is has a pretty good list: http://en.wikipedia.org/wiki/C++14
YellowPyrmid wrote:
when I search on google it gives me a wikipedia page that never ends.
Compared to the wikipedia page for C++11, the wikipedia page for C++14 is miniscule.
closed account (EwCjE3v7)
Thanks guys

But I cannot get Clang to work with Code::Blocks
What problems are you getting? You need to specify in the compiler options that you are using 'LLVM Clang Compiler', and since Clang doesn't come with the standard library last time I checked you will need to link it to one (preferably libc++, but it doesn't work fully on Windows yet so you can just give it the GCC libstdc++ one).
I always link to this now when I see any C++14 questions.

http://meetingcpp.com/index.php/br/items/cpp-status.html
Topic archived. No new replies allowed.