have a section about C++17 features, but the RC2 page has a section about
C++11 features. Is it generated by a script and does the script need to be
updated?
There's no script that I know of. I suspect we've always just grabbed
ReleaseNotes.rst from trunk, and presumably notes about C++17 features
last time were added on the 3.5.0 branch only.
Larisse and Richard, would you like to contribute some content about
the latest C++ features to the release notes?
At least one important change should be in the 3.6 release notes:
The 3.5 release notes mention support for type-less range-for-loops, but
r222865 removes that feature from clang 3.6 (after removal from the
draft C++ standard).
I would really like to get a patch into 3.6 for libc++. The patch
renames template parameters with the names '_A' and '_V' to longer
names. '_A' is frequently defined in ctypes.h and that could cause
libc++ to not compile.
I'm fairly sure the code was added between 3.5 and 3.6 so that would
make this a regression.
The patch can be found here: rL228353. I've
attached a patch that just modifies the headers and leaves the tests
alone (the test changes may not merge nicely).