Skip to content

Commit

Permalink
Merge pull request #7486 from ThanHenderson/unsup
Browse files Browse the repository at this point in the history
Specify unsupported features blocked by XLC v2r1
  • Loading branch information
0xdaryl authored Oct 17, 2024
2 parents 0de486a + 3b3072d commit 18d8727
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/SupportedC++Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,6 @@ The supported language and library features are set by the minimum compiler vers
* Variadic macros: `#define m(p, ...)`, `__VA_ARGS__`
* `__func__` macro
* `long long`
* Lambda expressions and closures: `[](int i) -> int { return i + 1; }`
* Generalized attributes: `[[attribute]]`
* Null pointer constant: `nullptr`
* Alignment support: `alignas`, `alignof`
* Explicit conversion operators

## Unsupported C++11 Features

Expand All @@ -104,3 +99,8 @@ The supported language and library features are set by the minimum compiler vers
* New character types: `char16_t`, `char32_t` (MSVC 2010)
* Extended sizeof (sizeof nested structures) (XLC 12.1)
* ref qualifiers on member functions: `int my_member() &&;` (MSVC 2010)
* Lambda expressions and closures: `[](int i) -> int { return i + 1; }` (XLC v2r1)
* Generalized attributes: `[[attribute]]` (XLC v2r1)
* Null pointer constant: `nullptr` (XLC v2r1)
* Alignment support: `alignas`, `alignof` (XLC v2r1)
* Explicit conversion operators (XLC v2r1)

0 comments on commit 18d8727

Please sign in to comment.