Features: Add support for C++14 features.

Record the features implemented by GNU 4.9 and Clang 3.4.
This commit is contained in:
Stephen Kelly
2014-05-06 00:21:14 +02:00
parent 3ea9bde845
commit dd043c3f21
23 changed files with 294 additions and 9 deletions
@@ -0,0 +1,9 @@
struct X { int i, j, k = 42; };
int someFunc()
{
X a[] = { 1, 2, 3, 4, 5, 6 };
X b[2] = { { 1, 2, 3 }, { 4, 5, 6 } };
return a[0].k == b[0].k && a[1].k == b[1].k ? 0 : 1;
}