Created on 2025-03-17.00:00:00 last changed 2 weeks ago
(From submission #685.)
Subclause 7.6.2.8 [expr.new] paragraph 8 and paragraph 9 contain special cases involving aggregate initialization using braced-init-lists, which need to be amended for parenthesized aggregate initialization. The corresponding rules for the initialization of variables are in 9.5.1 [dcl.init.general] bullet 16.5 for arrays and in 9.5.1 [dcl.init.general] bullet 16.6.2.2 for aggregate classes.
Possible resolution:
Change in 7.6.2.8 [expr.new] bullet 8.4 as follows:
If the expression in a noptr-new-declarator is present, it is implicitly converted to std::size_t. The value of the expression is invalid if
- ...
- the new-initializer is
a braced-init-listpresent and the number of array elements for which initializers are provided (including the terminating '\0' in a string-literal (5.13.5 [lex.string])) in a braced-init-list or parenthesized expression-list exceeds the number of elements to initialize.
Change in 7.6.2.8 [expr.new] paragraph 9 as follows:
If the allocated type is an array, the new-initializer isa braced-init-listis present and is not (), and the expression is potentially-evaluated and not a core constant expression, the semantic constraints ofcopy-initializing a hypothetical element of the arrayfrom an empty initializer listare checked as follows:[Note 5: The array can contain more elements than there are elements in the
- If the new-initializer is a braced-init-list, the hypothetical element is copy-initialized from an empty initializer list (9.5.5 [dcl.init.list]).
- If the new-initializer is a parenthesized expression-list, the hypothetical element is value-initialized (9.5.1 [dcl.init.general]).
braced-init-listnew-initializer, requiring initialization of the remainder of the array elementsfrom an empty initializer listas appropriate. —end note]
History | |||
---|---|---|---|
Date | User | Action | Args |
2025-03-17 00:00:00 | admin | create |