|
|
|
|
|
|
| (P0960R3, P1975R0) Aggregate initialization from a parenthesized list Aggregates can now be initialized with round parentheses instead of curly braces: struct T { int a, b, c; }; T x(1, 2); A (motivating) consequence is that make_unique and emplace now work with aggregate types. |