Skip to content

Commit 18d8727

Browse files
authoredOct 17, 2024
Merge pull request #7486 from ThanHenderson/unsup
Specify unsupported features blocked by XLC v2r1
2 parents 0de486a + 3b3072d commit 18d8727

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎doc/SupportedC++Features.md

+5-5
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)