File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed 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
73
73
* Variadic macros: ` #define m(p, ...) ` , ` __VA_ARGS__ `
74
74
* ` __func__ ` macro
75
75
* ` 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
81
76
82
77
## Unsupported C++11 Features
83
78
@@ -104,3 +99,8 @@ The supported language and library features are set by the minimum compiler vers
104
99
* New character types: ` char16_t ` , ` char32_t ` (MSVC 2010)
105
100
* Extended sizeof (sizeof nested structures) (XLC 12.1)
106
101
* 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