CWG Issue 2830 (original) (raw)
This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 117a. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.
2025-04-13
2830. Top-level cv-qualification should be ignored for list-initialization
Section: 9.5.5 [dcl.init.list]Status: DRWPSubmitter: Krystian StasiowskiDate: 2019-11-19
[Accepted as a DR at the March, 2024 meeting.]
(From editorial issue3492.)
Subclause 9.5.5 [dcl.init.list] paragraph 3 specifies:
List-initialization of an object or reference of type T is defined as follows:
- ...
Top-level cv-qualifiers should be ignored when comparing Tto other types, e.g. in 9.5.5 [dcl.init.list] bullet 3.2.
Proposed resolution (approved by CWG 2024-01-19):
Change in 9.5.5 [dcl.init.list] paragraph 3 as follows:
List-initialization of an object or reference of type cv T is defined as follows:
- ...
- If T is an aggregate class and the initializer list has a single element of type
cvcv1 U, where U is T or a class derived from T, the object is initialized from that element (by copy-initialization for copy-list-initialization, or by direct-initialization for direct-list-initialization).- ...