File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,11 +73,6 @@ The supported language and library features are set by the minimum compiler vers
7373* Variadic macros: ` #define m(p, ...) ` , ` __VA_ARGS__ `
7474* ` __func__ ` macro
7575* ` long long `
76- * Lambda expressions and closures: ` [](int i) -> int { return i + 1; } `
77- * Generalized attributes: ` [[attribute]] `
78- * Null pointer constant: ` nullptr `
79- * Alignment support: ` alignas ` , ` alignof `
80- * Explicit conversion operators
8176
8277## Unsupported C++11 Features
8378
@@ -104,3 +99,8 @@ The supported language and library features are set by the minimum compiler vers
10499* New character types: ` char16_t ` , ` char32_t ` (MSVC 2010)
105100* Extended sizeof (sizeof nested structures) (XLC 12.1)
106101* ref qualifiers on member functions: ` int my_member() &&; ` (MSVC 2010)
102+ * Lambda expressions and closures: ` [](int i) -> int { return i + 1; } ` (XLC v2r1)
103+ * Generalized attributes: ` [[attribute]] ` (XLC v2r1)
104+ * Null pointer constant: ` nullptr ` (XLC v2r1)
105+ * Alignment support: ` alignas ` , ` alignof ` (XLC v2r1)
106+ * Explicit conversion operators (XLC v2r1)
You can’t perform that action at this time.
0 commit comments