1. Executive summary
We have not met in-person since the February 2020 meeting in Prague because of the global pandemic. Weâre instead holding weekly teleconferences, as detailed in [P2145R1]. We focus on providing non-final guidance, and will use electronic straw polls as detailed in [P2195R0] to move papers and issues forward in a asynchronous manner.
Our main achievements have been:
-
Issue processing: most of the 50 language evolution issues have proposed resolutions, and a large number of them have been voted on through electronic polling.
-
C++23: weâve worked on papers for C++23 and later. As of January 2022, EWG is not considering new papers for C++23.
-
Incubation: weâve acted as EWG-I and "incubated" some early papers by providing early feedback to authors.
This paper outlines:
-
The work achieved in §âŻ7 Teleconferences;
-
Lists the §âŻ5 Polls results for the Early 2022 polling period and explain the §âŻ6 Polling Process (see [P1018r9] for the results of the February 2021 polling period, [P1018r11] for the results of the May 2021 polling period, and [P1018r13] for the results of the August polling period);
-
Lists the remaining outstanding issues in §âŻ8 Remaining Open Issues, some are still open while others are waiting for polling;
2. Papers of note
-
[P1000R4] C++ IS schedule
-
[P0592R4] To boldly suggest an overall plan for C++23
-
[P1999R0] Process: double-check evolutionary material via a Tentatively Ready status
-
[P2195R0] Electronic Straw Polls
-
[P2145R1] Evolving C++ Remotely
3. Tentatively ready papers
Following our process in [P1999R0], we usually mark papers as tentatively ready for CWG. We would usually take a brief look at the next meeting, and if nothing particular concerns anyone, send them to CWG. However, given the pandemic, weâve decided to provide guidance only in virtual teleconferences, and have an asynchronous polling mechanism to officially send papers to CWG or other groups as detailed in [P2195R0].
You can follow the lists of papers on GitHub:
4. Issue Processing
Weâve reviewed 50 Language Evolution issues at the Core groups' request, and have tentative resolutions for most. We donât want to poll all of these at the same time, and therefore only poll a subset in each polling period, reserving other issues for later polling periods. Weâve therefore only polled the "tentatively ready" issues (since theyâre tied to papers, and polled with said papers, as outlined below), as well as the "resolved" issues since telecon attendees believe that prior work has already addressed the issues.
§âŻ8 Remaining Open Issues contains a list of issues which arenât being voted on in this polling period.
5. Polls
The polls which EWG took in the January 2022 polling period, and the poll results, are:
5.1. P2280r3 Using unknown references in constant expressions
-
Highlight:
usage of unknown references doesnât work, thatâs surprising, make it work as expected.constexpr -
đł Poll: Forward P2280r3 "Using unknown references in constant expressions" to Core for C++23. Treat it as a Defect Report.
Poll votes:
SF | F | N | A | SA |
20 | 12 | 2 | 0 | 0 |
Abstain: 11 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: While this paper de-fact introduce the special-case for the constexpr function, I think that it leads to more intuitive and teachable behaviour of constexpr functions.
- Strong Favor: This covers cases where the compiler knows what I am asking, but refuses to answer because itâs not allowed to. This allows the compiler to tell me what it knows well.
- Strong Favor: It is pretty hard to explain to a non-language-lawyer why asking for the size of a by-reference
parameter is non-constant but doing so for a by-valuestd :: array
parameter is constant; and referencesstd :: array
this seems like a good place to draw the line. Ship it.+ - Strong Favor: I believe this is useful and relatively easily implementable.
- Favor: Constant evaluation is unequivocally weird: it can use non-static local variables initialized with constant expressions when no call to the function ever takes place, and it notionally occurs at runtime even though its failure can make the program ill-formed. This paper is in line with these properties, freely inventing objects with overlapping storage of types that can never be constructed and changing lvalues with known referents to refer to such phantoms instead. That said, the change somehow makes the language less surprising, as the frequency of confusion over the non-
static
illustrates. As a matter of convenience, then, if not of coherence, it is an improvement.std :: array :: size
5.2. P2468r1 The Equality Operator You Are Looking For
-
Highlight: Make rewriting equality in expressions less of a breaking change.
-
đł Poll: Forward P2468r1 "The Equality Operator You Are Looking For" to Core for C++23. Treat it as a Defect Report against C++20.
Poll votes:
SF | F | N | A | SA |
19 | 14 | 1 | 0 | 0 |
Abstain: 11 |
Poll outcome:â consensus
Salient comments:
- Favor: It is amazing that the new comparison rules continue to cause so much trouble after so much time. The examples given show that these revised rewrite rules are at the very least a significant improvement and should reduce the pain of updating existing code to newer language standards.
- Favor: This is a necessary update to C++20. Migration to C++20 did sometimes cost a lot of time due to the various issues mentioned in the paper.
- Strong Favor: Given that implementations are doing something along those lines to avoid breaking existing code already - ship it.
5.3. P2327r1 De-deprecating volatile
compound operations
-
Highlight: C++20 deprecated many uses for
. This paper un-deprecates the bitwise compound operators (volatile
,|=
,and&=
) on^=
left operands.volatile -
đł Poll: Forward P2327r1 "De-deprecating
compound operations" to Core for C++23. Treat it as a Defect Report against C++20.volatile
Poll votes:
SF | F | N | A | SA |
13 | 19 | 1 | 0 | 2 |
Abstain: 10 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: The proposal retains compatibility with large swaths of often vendor-supplied hardware support libraries targeted at C. This makes C++ more viable in the embedded world. Programming patterns that embedded systems engineers are familiar with keep on working.
- Strong Favor: We want to increase the usage of C++ for embedded code; not doing this would alienate some users, and add more support for a "C++ is bad for embedded" position
- Favor: I can understand the problems caused by the C++20 change in that respect; the paper, however, does not fully address (it seems to me) the problems that led to the deprecation in the first place (the paper _does_ explain how these operations can be well used under specific circumstances and by specific parties, of course, but use of these operations is not limited to such parties and circumstances). Iâm split, but will err on the side of trusting users...
- Favor: It is a misfeature of the language that volatility pertains equally to reads and writes despite the fact that memory-mapped devices are often simplex. It is the correct balance to allow programmers to idiomatically use objects associated with such devices even though, even on hardware that supports an appropriately atomic modification, the language does not provide a mechanism for the compound assignment operators to support full-duplex communication.
- Strong Against: To me, the semantic of the compound assignment is not well defined in the standard. It says:
is equivalent toE1 op = E2
except thatE1 = E1 op E2
is evaluated only once. This is not enough to define volatile semantics. We need to know how many read access and how many write access occur, in what order. The standard was unclear before, so be it. It was cleaned, that was good. Reintroducing inaccurately defined construct is not the right way to go. I would be in favor if the semantics were defined. The paper claims that deprecation(and eventually removal) will force developers to change the way they write embedded code. This is not true. Embedded compilers would probably support this construct as an extension, which is the right thing to do for something that has no clearly specified semantic (and I hope they will define the semantic they selected in their documentation).E1 - Strong Against: It is evident from discussion in and outside the committee that, while people are hurt by that depreciation, the semantics of compound assignments are too often assumed to be atomic or are otherwise unclear. The motivation for deprecating them hasnât disappear. It is important that the C committee and the industry follows suite with that - and it might take time. However, undeprecating them sends the wrong message, and still leaves users with the bugs the original paper was trying to correct.
5.4. P2266r2 Simpler implicit move
-
Highlight: In C++20,
statements can implicitly move from local variables of rvalue reference type; but a defect in the wording means that implicit move fails to apply to functions that return references. C++20âs implicit move is specified via a complicated process involving two overload resolutions, which is hard to implement, causing implementation divergence. We fix the defect and simplify the spec by saying that a returned move-eligible id-expression is always an xvalue.return -
Note: r1 of this paper went through electronic polling, received mixed feedback based on new information, see [P1018r13] for the poll comments. It was updated to r2, re-discussed in the 2021-10-07 teleconference to address the new information, and is now being re-polled.
-
đł Poll: Forward P2266r2 "Simpler implicit move" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
15 | 13 | 1 | 2 | 0 |
Abstain: 14 |
Poll outcome:â consensus
Salient comments:
- Favor: Reading through the rationale presented in the paper, I find that these rules are consistent with thinking of r-value references as "owning" in the sense that they represent a promise that modifications to the referenced object will not be observed except by components to which ownership is subsequently transferred. These rules changes preserve that intuitive property without requiring extra syntax.
- Favor: Itâs unfortunate to break any existing code doing something as simple as returning a local variable, but even within that set many cases are plainly bugs or were already broken by C++20. Given that the language has a means of identifying Xpiring values in the type system, it seems only appropriate to use it in such a particularly straightforward context.
- Favor: The current "implicit move" semantics for a return statement are unlike any other overload resolution mechanism in the language. So this seems like a good direction. I would have preferred also treating this as a defect report.
- Favor: "It is a simpler rule, but probably will have more downstream consequences than the ones presented here. Itâs hard to know what those are. I think we should really invest, as an organization, in the ability to test changes like this. If we had an implementation of
, and the ability to test this on many large code bases with test suites, we probably wouldâve never had the problem that P2468 now has to solve. Here, we do have an implementation of this paper, and we have some feedback of its impact. But to what extent is this a thorough-enough testing? Itâd be nice if we could actually provide a good answer to that question in a way that could give us the confidence to say "Yes, this breaks some code, in these situations, and that is okay." Today, the best I can do is vote FOR and hope that no further, larger issues will pop up."== - Against: Weakly against P2266 (vs strongly before). There hasnât been any glut of new errors, and the problems seem to have "settled" from the Clang implementation. That said, the throw-example still gives me heartburn, otherwise I have no implementation concerns.
- Against: This broke code in STL headers written by C++ experts; that gives me no confidence it wonât also break user code in the wild, which may be written by less-expert folks. Thankfully, the breakages we saw at Intel finally stopped, which is why this is an Against instead of a Strongly Against (but Iâm borderline strong on this).
5.5. P1467r8 Extended floating-point types and standard names
-
Highlight: In addition to the three standard floating-point types,
,float
, anddouble
, implementations may define any number of extended floating-point types, similar to how implementations may define extended integer types. An extended floating-point type may have the same representation and the same set of values as a standard floating-point type. But the extended floating-point type is still a separate type, and is not just an alias for the standard type. The proposal covers conversion rank, promotion, implicit conversion, usual arithmetic conversion, narrowing conversion, overload resolution, literal suffixes. It also contains library changes.long double -
đł Poll: Forward the language changes in P1467r8 "Extended floating-point types and standard names" to Core for C++23, assuming that Library Evolution will separately forward the library changes to Library for C++23.
Poll votes:
SF | F | N | A | SA |
11 | 15 | 2 | 1 | 0 |
Abstain: 16 |
Poll outcome:â consensus
Salient comments:
- Favor: While the feature as proposed still has some rough edges (e.g., imperfect C compatibility and complicated overload resolution behavior), the numerous reviews have plainly identified the least problematic means of integrating several new fundamental types into the language. Those types are of increasing practical importance and have the hardware support appropriate for a language feature.
- Favor: This will allow C++ applications to take advantage of existing and yet-to-come floating-point hardware in a standard way.
- Against: The lack of implementation experience of the proposed overload resolution rules is concerning.
5.6. P2350r2 constexpr class
-
Highlight: Allow
in theconstexpr
-head, declaring that all member functions, including special member functions, in thisclass
are implicitlyclass
.constexpr -
đł Poll: Forward P2350r2 "
" to Core for C++23.constexpr class
Poll votes:
SF | F | N | A | SA |
12 | 12 | 9 | 5 | 2 |
Abstain: 5 |
Poll outcome:â no consensus
Salient comments:
- Strong Favor: The standard library is moving towards "constexpr all the things" as much as it makes sense. Weâre at the point where slapping a "constexpr" at every declaration in a class becomes a nuisance and mental burden. This should be avoided by moving the constexpr-ness of all direct class members up at the class level. Stuff thatâs not constexpr will then stand out as something to possibly reconsider in the design.
- Strong Favor: The code using this is way friendlier to read and maintain. The infrastructure was already introduced, so it is easy to teach and grok. If P2448 is accepted at the same time I see no downside.
- Favor: Useful to avoid a lot of boilerplate in modern code bases.
- Against: The value is IMO minimal, and I is going in the wrong direction of where constexpr is headed. Moving the annotation to the class makes the formerly "obvious" annotation less obvious.
- Against: Allowing
but notstruct X constexpr ...
is suspect.struct X consteval ... - Against: P2448 removes some of the important caveats to using this feature, but it remains a clever workaround for one of the defaults being wrong rather than a meaningful feature. The constexpr status of static data members seems orthogonal at best, such that this convenience encourages silly things like adding a base class to hold any non-constexpr ones.
- Strong Against: This goes into the wrong direction. Faced with the fantastic problem of everything being constexpr, WG21 should rather consider whether the keyword is useful at all. As pointed out by P2448, the constexpr keyword already offer no guarantee, and if it doesnât then maybe everything that can be called in a constant expression should be, and as such maybe an implenentation should always try to evaluate member function calls at constexpr. The feature proposed by P2350 is a short term solution that only works in very narrow cases, and adding a non constexpr function forces to modify the whole class.
- Strong Against: Applying constexpr on static member functions turns this feature into a different one. Now users will start open classes with all static member functions to write constexpr libraries because there is no other way in the language to mark a series of free functions with constexpr.
5.7. P1169r3 static operator ()
-
Highlight: Allow declaring
asoperator ()
, as well as making lambdasstatic
.static -
đł Poll: Forward P1169r3 "
" to Core for C++23.static operator ()
Poll votes:
SF | F | N | A | SA |
16 | 16 | 3 | 1 | 1 |
Abstain: 8 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: It is a little weird to exploit the ability to call static member functions via member-access syntax to allow a performance improvement, but the feature is valuable and the semantics are the only ones possible. Yet another default is now wrong (for captureless lambdas), although those are so often inlined that the practical impact may be small.
- Strong Favor: I have thought that this was possible many times only to find out (again) that it is not. Finally it will be.
- Favor: Sheds needless overhead.
- Favor: Seems generally useful. The restriction against static here seems arbitrary.
- Against: Itâs a patch
- Strong Against: This adds a lot of subtlety for very little gain in practice.
5.8. P1774r5 Portable assumptions
-
Highlight: Add the
attribute. The use of assumptions is intended to allow implementations to assume that a given expression is true, and to optimize the program based on that assumption.[[ assume ( expression )]] -
đł Poll: Forward P1774r5 "Portable assumptions" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
14 | 17 | 3 | 4 | 0 |
Abstain: 7 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: There are use cases where assumptions can significantly improve performance and decrease code size, and they have been existing practice on all major compilers for many years, but in a non-standardised, non-unified, non-portable, not-very-well-defined way. This paper fixes it. I am strongly in favour of including this in C++23.
- Strong Favor: Useful tool for code optimization, impressive usage examples for the standard library
- Against: The specification of what this actually DOES is too handwavy for my comfort. Iâm still not sure what the limitations being placed on the implementation are, and the paperâs assumption (hah!) of how the current implementations of similar things seem to be misguided.
- Against: This tool is too sharp and too seductive. I expect it to introduce many new UB in user code, any many cases without measurable benefits.
- Against: high potential for overuse leading to serious errors
5.9. P1494r2 Partial program correctness
-
Highlight: Adds
(name pending LEWG review) which establishes an observable checkpoint, inhibiting "time travel" of Undefined Behavior past the checkpoint.std :: observable () -
đł Poll: Forward P1494r2 "Partial program correctness" to Core for C++23, pending LEWG approval.
Poll votes:
SF | F | N | A | SA |
10 | 7 | 3 | 4 | 1 |
Abstain: 20 |
Poll outcome:â no consensus
Salient comments:
- Strong Favor: We need this to properly reason about asserts and contracts. Until we get full contracts this will help us to get the correct behaviour in user build solutions
- Favor: This is potentially useful, though I think its usefulness in practical terms is quite limited, as itâs hard to imagine why I would reach for this unless I already thought I had UB that I needed to protect against -- in which case I would rather fix the UB. I could see myself using this feature while actively iterating on code, but I doubt Iâd ever commit code with this in it.
- Favor: This proposal seems pretty wild, but Iâm curious to see where it goes.
- Favor: This seems like a useful - if expert-only - feature.
- Favor: Useful, although Iâm sure it will get misunderstood and misused.
- Neutral: In the war between programmer implicit assumptions, and what the compiler can observe, I am not confident this helps more than other rewrites that acknowledge UB that the compiler has noted.
- Against: I waffle back and forth between liking the idea and having no confidence we have any idea how well this will work in practice because there is zero implementation experience.
- Against: This seems to lack real implementation experience.
- Strong Against: This solves a problem.... that users donât know exist, in a way users wonât know about. This is a very expert-friendly solution, for a very narrow set of experts. And unlike other esoteric language feature, this paper doesnât provide specific use cases where such an expert could significantly improve a program using this feature. Are we doing anything more than technically providing a solution? Where in my code, should i put that? I can only assume every other line of code i write triggers some UB, and so, should i add std::observable calls everywhere? The paper seems to be greatly concerned about I/O, was stating that returning from I/O functions constitute checkpoints considered?
5.10. P2448r0 Relaxing some constexpr
restrictions
-
Highlight: Remove two rules about
that make code ill-formed or ill-formed (no diagnostic required) when functions or function templates are markedconstexpr
that might never evaluate to a constant expression.constexpr -
đł Poll: Forward P2448r0 "Relaxing some
restrictions" to Core for C++23. Treat it as a Defect Report.constexpr
Poll votes:
SF | F | N | A | SA |
20 | 12 | 1 | 2 | 1 |
Abstain: 9 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: Seems to go against the spirit of constexpr rules of just diagnosing things that arenât actually wrong, with the added harm that the rules arenât consistently enforced.
- Favor: This improves the usability of constexpr and the language as a whole. Implementation is trivial.
- Favor: This change is consistent with the general principle of diagnosing constexpr violations as they occur, rather than trying to predict whether or not a code path conforms to constexpr requirements. This is much more useful for programmers, particularly those who need to support multiple language dialects.
- Neutral: I cannot make my mind if helping experts that write code that works seamlessly with several versions of the standard is more or less important than helping beginners that may have just badly written a constexpr function... I would be in favor of beginners (and vote against this) if I trusted diagnostics to work well in many non-toy examples, but since I donât, Iâll be neutral.
- Against: This paper removes any amount of value to the constexpr keyword; which is that the compiler will make SOME effort to validate its usability as constexpr. I donât like at all that this causes us to no longer catch some obvious mistakes in the userâs code.
- Strong Against: Footgun. I do not agree with the logic that a function must be used to be checked for legality. Telling the user "this can NEVER be correct" is a powerful feature in the real world, where not every user tests every function immediately upon writing it. Why make them write the test when the compiler can tell them at compile time, which is the whole value-add for constexpr in the first place?
5.11. P2437r0 Support for #warning
-
Highlight: C23 is adding support for
as a complement to#warning
. Add it to C++23 as well.#error -
đł Poll: Forward P2437r0 "Support for
" to Core for C++23.#warning
Poll votes:
SF | F | N | A | SA |
26 | 11 | 2 | 0 | 0 |
Abstain: 6 |
Poll outcome:â consensus
Salient comments:
- Favor: Simple, straight forward, useful, retains compatibility with C, standardizes existing practice. Ship it.
5.12. P2324r1 Labels at the end of compound statements (C compatibility)
-
Highlight: Labels are allowed at the end of compound statements in C, but not C++. For example
. This paper rectifies this minor divergence.int main () { invalid_cpp : } -
đł Poll: Forward P2324r1 "Labels at the end of compound statements (C compatibility)" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
20 | 11 | 3 | 0 | 0 |
Abstain: 11 |
Poll outcome:â consensus
Salient comments:
- Favor: Improves compatibility with C23, removes an IMHO unnecessary restriction.
5.13. P2071r1 Named universal character escapes
-
Highlight: C++ programmers have been able to portably use characters outside of the basic source character set in character and string literals using universal-character-names since C++ was standardized. For example the following UTF-8 string literal:
u8
. This proposal enables the above literal to be written using Unicode assigned names instead of Unicode code point values. The following is equivalent to the preceding C++ example" \u0100\u0300 " u8
."\N{LATIN CAPITAL LETTER A WITH MACRON}\N{COMBINING GRAVE ACCENT}" -
đł Poll: Forward P2071r1 "Named universal character escapes" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
12 | 14 | 3 | 3 | 1 |
Abstain: 12 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: Avoid specifying magic values in code.
- Favor: One would hope that many
\
escape sequences are accompanied by comments explaining the character being selected. It is plainly superior to have the compiler map from the human-readable concept to the numeric one, just as it does for machine code. The size cost in the implementation appears to be acceptable.u - Favor: Unicode compatibility is extremely important, and this feature makes it easier for users to incorporate Unicode into their applications. I find the concerns about increased binary size of the compiler to be extremely underwhelming.
- Neutral: While I can see the usefulness, Iâm not sure Unicode character escapes is something that will be used often enough to make up for the need of a dictionary in the compiler. Neutral simply because it is not an overly large dictionary.
- Against: Concern about the compiler space overhead.
- Strong Against: Having to add a few hundred KB to C++ tools (which are often only a few MB) is way too high of a cost for the relatively minor convenience this feature offers.
5.14. P2295r5 Support for UTF-8 as a portable source file encoding
-
Highlight: The set of source file character sets is currently implementation-defined. This paper mandates that C++ compilers must accept UTF-8 as an input format. How the source file encoding is detected, which other input formats are accepted, and what the storage media is (e.g. files), remain implementation-defined.
-
đł Poll: Forward P2295r5 "Support for UTF-8 as a portable source file encoding" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
20 | 9 | 3 | 0 | 0 |
Abstain: 13 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: This is the most important change we can make for Unicode support in C++. It allows for string literals to seamlessly incorporate UTF-8 code sequences without worrying about how those sequences will be interpreted across varying compilers.
5.15. P2290r2 Delimited escape sequences
-
Highlight: Add an additional, clearly delimited syntax for octal, hexadecimal and universal character name escape sequences. The new syntaxes
\
,u {} \
,o {} \
are usable in places wherex {} \
,u \
,x \
currently are.nnn -
đł Poll: Forward P2290r2 "Delimited escape sequences" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
9 | 15 | 3 | 1 | 1 |
Abstain: 16 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: The current alternative (write every character as a 3-digit octal number) is user-hostile. This is a welcome addition.
- Neutral: Itâs not clear that having yet another syntax is preferable to having our current less ergonomic forms, especially given that
\
is not much longer thanU00012345 \
andu { 12345 } \
isnât greedy and is shorter than almost allu1234 \
values. The greedyu {...} \
is a bit more trouble, but itâs very common to have "binary" escapes in long sequences; code generators that might need to generate a mixture of escapes and ordinary characters can of course handle the awkwardness in just one place.x - Against:
\
saves characters and no longer asks users to learn bothu {...} \
andu \
, so people will use them. The other two are unlikely to be popular.U
is about the same length and more straightforward comparing to{ 0x2c , 0x10 , 0 }
. For the beneficial parts, this paper seems unnecessary if we further extend on top of P2071"\x{2c}\x{10}" \
.N { U + 10034 } - Strong Against: Unnecessary
5.16. P2362r3 Remove non-encodable wide character literals and multicharacter wide character literals
-
Highlight: C++ currently permits writing a wide character literal with multiple characters or characters that cannot fit into a single
codeunit. This paper makes these literals ill-formed.wchar_t -
đł Poll: Forward P2362r3 "Remove non-encodable wide character literals and multicharacter wide character literals" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
14 | 12 | 2 | 1 | 0 |
Abstain: 16 |
Poll outcome:â consensus
Salient comments:
-
h
- Favor: Multicharacter literals in general are not usefully standardized, and the wide-character variants have no practical application, not least because they suffer from the inadequate wchar_t on Windows. That the change is a simplification to one of the ugliest parts of the standard is a bonus.
- Favor: Itâs hard to imagine that any use of these sequences is not a bug.
- Against: I donât know what this paper enables, and the issue still looks like a QoI to me.
5.17. P2348r2 Whitespaces Wording Revamp
-
Highlight: Clarify what constitutes a new-line and a whitespace, using Unicode terminology.
-
đł Poll: Forward P2348r2 "Whitespaces Wording Revamp" to Core for C++23.
Poll votes:
SF | F | N | A | SA |
10 | 17 | 2 | 0 | 0 |
Abstain: 16 |
Poll outcome:â consensus
Salient comments:
- Strong Favor: This sort of modernization is welcome, if only so that we can stop spending time thinking about these issues informally. Removing silly things like IFNDR for comments is plainly an improvement. Consistency with other practical languages is more important than following Unicodeâs suggestions for plain text when there (unfortunately) is disagreement.
6. Polling Process
For each poll, participants are asked to vote one of:
-
Strongly in favor
-
In favor
-
Neutral
-
Against
-
Strongly against
Participants also have the option to abstain from voting on a particular poll. They are asked to comment on each poll. This comment is mandatory, as it helps the chair determine consensus.
7. Teleconferences
Here are the minutes for the virtual discussions that were held since the Prague meeting in February 2020:
- 2020-04-09 Issue Processing
- 2020-04-15 Issue Processing
- 2020-04-23 Issue Processing
- 2020-04-29 Issue Processing
- 2020-05-07 Issue Processing
- 2020-05-13 Issue Processing
- 2020-05-21 A General Property Customization Mechanismâ[P1393R0] (P1393 tracking issue)
- 2020-06-10 Reviewing Deprecated Facilities of C++20 for C++23â[P2139R1] (P2139 tracking issue)
- 2020-06-18 C++ Identifier Syntax using Unicode Standard Annex 31â[P1949R4] (P1949 tracking issue)
- 2020-06-24 Extended floating-point types and standard namesâ[P1467R4] (P1467 tracking issue)
- 2020-07-02 Allow Duplicate Attributes, Attributes on Lambda-Expressionsâ[P2156R0] (P2156 tracking issue) and [P2173R0] (P2173 tracking issue)
- 2020-07-08 Pointer lifetime-end zap and provenance, tooâ[P1726R3] (P1726 tracking issue)
- 2020-07-16 Guaranteed copy elision for return variablesâ[P2025R1] (P2025 tracking issue)
- 2020-07-30 Reviewing Deprecated Facilities of C++20 for C++23, Removing Garbage Collection Supportâ[P2139R2] (P2139 tracking issue) and [P2186R0] (P2186 tracking issue)
- 2020-08-05 Transactional Memory Lite Support in C++â[P1875R0] (P1875 tracking issue)
- 2020-08-19 Freestanding Language: Optional
, Mixed string literal concatenationâ[P2013R2] (P2013 tracking issue) and [P2201R0] (P2201 tracking issue):: operator new - 2020-08-27 Exhaustiveness Checking for Pattern Matchingâ[P1371R3] (P1371 tracking issue)
- 2020-09-02
- a simple, scannable preprocessor-based resource acquisition methodâ[P1967R2] (P1967 tracking issue)#embed - 2020-09-10 A pipeline-rewrite operatorâ[P2011R1] (P2011 tracking issue)
- 2020-09-16 Pattern matching: inspect is always an expressionâ[P1371R3] (P1371 tracking issue)
- 2020-09-24 C++ Identifier Syntax using Unicode Standard Annex 31, Member Templates for Local Classesâ[P1949R6] (P1949 tracking issue) and [P2044R0] (P2044 tracking issue)
- 2020-09-30 Narrowing contextual conversions to bool, Generalized pack declaration and usageâ[P1401R3] (P1401 tracking issue) and [P1858R2] (P1858 tracking issue)
- 2020-10-08 Compound Literals,
â[P2174R0] (P2174 tracking issue) and [P1938R1] (P1938 tracking issue)if consteval - 2020-10-14 Inline Namespaces: Fragility Bites, Trimming whitespaces before line splicingâ[P1701R1] (P1701 tracking issue) and [P2223R0] (P2223 tracking issue)
- 2020-10-22 Issues Processing
- 2020-10-28 Issues Processing
- 2020-11-05 Deducing
âP0847R5 (P0847 tracking issue)this - 2020-11-19
in pattern matchinggoto - 2020-12-03
: decay-copy in the languageâP0849R5 (P0849 tracking issue)auto ( x ) - 2021-01-14 Polls
- 2021-01-20 Final polls preparation
- 2021-01-28 P2012 Fix the rangeâbased for loop
- 2021-02-03 P2280 Using unknown references in constant expressions
- 2021-02-11 P1974 Non-transient constexpr allocation using
propconst - 2021-02-17 P2242 Non-literal variables (and labels and
s) ingoto
functionsconstexpr - 2021-02-25 P1371 pattern matching: implementation experience pattern matching now has fairly capable prototype implementation and in this session it will be both demonstrated and described. Bruno, the core implementer, will also field any implementation related questions surrounding the proposal. See the Godbolt demo.
- 2021-03-02 P2279R0 We need a language mechanism for customization points joint EWG+LEWG session
- 2021-03-11 P2285 Are default function arguments in the immediate context?
- 2021-03-17 P2266 Simpler implicit move
- 2021-03-25 P2128 Multidimensional subscript operator
- 2021-03-31 P2036 Changing scope for lambda trailing-return-type, and P2287 Designated-initializers for base classes
- 2021-04-08 Pattern matching identifier patterns syntax:
vslet
vs none Introducing bindings inside pattern matching: Unqualified identifier within pattern matching must have well defined meaning. Published version of the paper (P1371R4) proposed using case keyword to disambiguate names between identifier expressions and introducing named binding. This direction raised some concerns within committee and authors want to propose another way of resolving the ambiguity. After the presentation authors would like to have a poll to secure committee approval on the proposed direction.auto - 2021-04-22 P2334 Add support for preprocessing directives
andelifdef
, and P2246 Character encoding of diagnostic textelifndef - 2021-04-28 Final discussion of the polls, and P2066 Suggested draft TS for C++ Extensions for Minimal Transactional Memory
- 2021-05-06 P2314 Character sets and encodings, and quick review of r2 for P2280 Using unknown references in constant expressions
- 2021-05-12 P2255 A type trait to detect reference binding to temporary
- 2021-05-20 P2025 Guaranteed copy elision for named return objects
- 2021-05-26 P2041 Deleting variable templates
- 2021-06-03 P1967
â a simple, scannable preprocessor-based resource acquisition method#embed - 2021-06-14 Joint session with LEWG on P2138 Rules of Design
Specification engagement<=> - 2021-06-23 P1701 Inline Namespaces: Fragility Bites
- 2021-07-01 P2360R0 Extend init-statement to allow alias-declaration, and P2290 Delimited escape sequences, and P2316 Consistent character literal encoding
- 2021-07-07 P2392R0 Pattern matching using
andis as - 2021-07-21 P2350 constexpr class
- 2021-07-29 P1169
static operator () - 2021-08-04 P2347 Argument type deduction for non-trailing parameter packs
- 2021-08-12 P2355 Postfix fold expressions
- 2021-08-26 P2295 Support for UTF-8 as a portable source file encoding and P2362 Remove non-encodable wide character literals and multicharacter wide character literals
- 2021-09-01 P2414R1 Pointer lifetime-end zap proposed solutions
- 2021-09-15 P2327 De-deprecating volatile compound assignment
- 2021-09-23 P2277 Packs outside of Templates
- 2021-09-29 P2012 Fix the range-based for loop
- 2021-10-07 P2280 Using unknown pointers and references in constant expressions && P2266 Simpler implicit move
- 2021-10-13 P2448 Relaxing some
restrictions && P2350constexpr
classconstexpr - 2021-10-21 P1467 extended floating-point
- 2021-10-27 P2437 support for
#warning - 2021-11-04 P1494 Partial program correctness
- 2021-11-10 P2348 Whitespaces Wording Revamp && P2071 Named universal character escapes
- 2021-12-02 P2324 Labels at the end of compound statements && P114R5 Portable assumptions
- 2021-12-08 P1705 Enumerating Core Undefined Behavior (short paper, unlikely that thereâs content for EWG, let SG12 send to CWG) && P2468R0 The Equality Operator You Are Looking For
- 2021-12-16 P1467R7 Extended floating-point types and standard names
8. Remaining Open Issues
The following table lists all remaining open issues referred to EWG by Core or Library. Some of them are ready to be polled but are held back from the polling periods to limit the number of polls in this round.
From |
# |
Title |
Notes |
Resolution |
Lib |
initializer_list assignability |
std::initializer_list::operator= [support.initlist] is horribly broken and it needs deprecation: std::initializer_list<foo> a = {{1}, {2}, {3}}; a = {{4}, {5}, {6}}; // New sequence is already destroyed. Assignability of initializer_list isnât explicitly specified, but most implementations supply a default assignment operator. Iâm not sure what [description] says, but it probably doesnât matter. Proposed resolution: Edit [support.initlist] p1, class template initializer_list synopsis, as indicated: namespace std {   template<class E> class initializer_list {   public:     [âŠ]     constexpr initializer_list() noexcept;     initializer_list(const initializer_list&) = default;     initializer_list(initializer_list&&) = default;     initializer_list& operator=(const initializer_list&) = delete;     initializer_list& operator=(initializer_list&&) = delete;     constexpr size_t size() const noexcept;     [âŠ]   };   [âŠ] } LWG telecon appears to want a language change to disallow assigning a braced-init-list to an std::initializer_list but still permit move assignment of std::initializer_list objects. That is, auto il1 = {1,2,3}; auto il2 = {4,5,6}; il1 = {7,8,9}; // currently well-formed but dangles immediately; should be ill-formed il1 = std::move(il2); // currently well-formed and should remain so Meeting: Proposed resolution:
SF F N A SA 0 3 12 0 0 JF emailed LEWG, to see if they have an opinion, no feedback. Asked LEWG chairs to schedule for a telecon. LWG discussed priority. |
â»ïž | |
Lib |
std::function should not return dangling references |
If a std::function has a reference as a return type, and that reference binds to a prvalue returned by the callable that it wraps, then the reference is always dangling. Because any use of such a reference results in undefined behaviour, the std::function should not be allowed to be initialized with such a callable. Instead, the program should be ill-formed. A minimal example of well-formed code under the current standard that exhibits this issue: int main()Â { Â Â std::function<const int&()> F([]{ return 42; }); Â Â int x = F(); // oops! } Proposed resolution: Add a second paragraph to the remarks section of 20.14.16.2.1 [func.wrap.func.con]: template<class F> function(F f); -7- Requires: F shall be CopyConstructible. -8- Remarks: This constructor template shall not participate in overload resolution unless
[âŠ] Tim: LWG in Batavia 2018 would like a way to detect when the initialization of a reference would bind it to a temporary. This requires compiler support, since thereâs no known way in the current language to do so reliably in the presence of user-defined conversions (see thread starting at https://lists.isocpp.org/lib/2017/07/3256.php). Meeting: Tim wrote p2255 to address this. Ville thinks there should be an analysis of alternative approaches. Also see P0932. |
â»ïž | |
Core |
Explicit instantiation of in-class |
A Note 2020-04-29 Tentative agreement: This should be well-formed. SF 1 F 10 N 2 A 1 SA 0Â JF emailed EWG / Core about this. Davis: the current name lookup approach which Core is taking in p1787 would disallow this. Supporting this is possible, it would be inconsistent, but would also be a feature. Notes 2020-10-22: wait until p1787 is voted into the working draft, because itâs making this behavior intentional. At that point, we can vote on marking the issue as Not a Defect. No objection to unanimous consent. Notes 2021-09-23: mark CWG2261 as Not A Defect, the example is now clearly ill-formed thanks to p1787, if we want to change this then weâd need a paper.
|
NAD | |
Core |
Non- |
Hubert: question over the role of the For A userâs desire for wanting to suppress implicit instantiation can arise for different reasons: To reduce space in object files, executables, etc. and similarly to reduce the number of input symbols to the linker To reduce compile time in performing semantic analysis for instantiations whose definitions are provided elsewhere To control point-of-instantiation, avoiding contexts where the requisite declarations are not declared The special rule around inline functions allows Consider the following as a translation unit:
Marking the template definition The issue initially points out that this use of the I am not sure if CWG is asking EWG a specific question other than the general "we do not believe this is a wording or obvious consistency issue; is this an issue in terms of design?" Meeting: Hubert forked the thread on the reflector. Might want the education SG to take a look, or might want a paper. Meeting 2020-10-28: Inbal will try to put together the wording, to prove / disprove whether this is a defect. Notes 2021-09-23: POLL: in a new world with modules, inline isnât merely an ODR tool. We therefore believe that CWG2270 is Not a Defect.
|
NAD | |
Core |
Base-derived conversion in member type of pointer-to-member conversion |
Related to CWG 170, drafting by Clark seems unlikely. This is section 2.1 of Jeff Snyderâs P0149R0, which was approved by EWG, 4 years ago, waiting for wording. JF reached out to Jeff. Did wording with Jens, main blocker is lack of implementation. Meeting: (notes) Suggest closing as Not A Defect because we have implementation uncertainties, but weâll explore the design space in P0149. ABI group will discuss. All in favor. |
NAD | |
Core |
Lifetime of temporaries in range-based for |
// some function   std::vector<int> foo();   // correct usage   auto v = foo();   for( auto i : reverse(v) ) { std::cout << i << std::endl; }   // problematic usage   for( auto i : reverse(foo()) ) { std::cout << i << std::endl; } Meeting: (notes, also discussed in Rapperswil 2014) Suggest closing as Not A Defect because itâs a change which might have effects on existing code (might cause bugs), and might need to change more than just range-based loops. See p0614, p0577, p0936, p1179. Weâll explore the design space in a separate paper, Herb circled back with Nico on this, might write a paper. All in favor. |
NAD | |
Core |
Querying the alignment of an object |
Quick example using âautoâ illustrates why we might want this capability for objects as well as types. Principle of least astonishment suggests it is surprising for sizeof and alignof to behave differently in this regard. Recommend shipping this straight to core as soon as we can find a wording champion. We need to discuss with WG14. Questions for EWG to answer before forwarding:
This needs a design paper rather than going straight to core. https://godbolt.org/z/TeVA9T GCC seems to report the alignment of the object not just of decltype(object). Meeting: (notes, also discussed in Rapperswil 2014) Suggest closing as Not A Defect, the design is complex especially around alignment of object versus type. Invite a paper, Inbal will pitch in, Alidair can collaborate. All in favor. Inbalâs paper: P2152R0 |
NAD | |
Core |
Explicit specializations in non-containing namespaces |
The current wording of 9.8.1.2 [namespace.memdef] and 13.9.3 [temp.expl.spec] requires that an explicit specialization be declared either in the same namespace as the template or in an enclosing namespace. It would be convenient to relax that requirement and allow the specialization to be declared in a non-enclosing namespace to which one or more if the template arguments belongs. Additional note, April, 2015: See EWG issue 48. Might allow us to revert DR2061 and all the horribleness that created and described in p1701. The problem 1077 addresses is the motivating factor in dr2061. Also see CWG 2370. Meeting: (notes) Suggest closing as Not A Defect. See p0665, minutes. Continue under p0665 or a forked version of it. All in favor. |
NAD | |
Core |
trailing-return-type and point of declaration |
template <class T> T list(T x);     template <class H, class ...T>     auto list(H h, T ...args) -> decltype(list(args...)); // list isnât in scope in its own trailing-return-type     auto list3 = list(1, 2, 3); Meeting: (notes, also discussed in Rapperswil 2014) there might be compiler divergence according to Daveed. Suggest closing as Not A Defect, it would be tricky to change behavior without ambiguity. "Fixing" this would break existing code that relies on seeing only previous declarations. No objection to unanimous consent. |
NAD | |
Core |
Omitted bound in array new-expression |
The syntax for noptr-new-declarator in 7.6.2.7 [expr.new] paragraph 1 requires an expression, even though the bound could be inferred from a braced-init-list initializer. It is not clear whether 9.4.1 [dcl.init.aggr] paragraph 4, An array of unknown size initialized with a brace-enclosed initializer-list containing n initializer-clauses, where n shall be greater than zero, is defined as having n elements (9.3.3.4 [dcl.array]). should be considered to apply to the new-type-id variant, e.g., Â Â new (int[]){1, 2, 3} This was addressed by p1009 Meeting: (notes) Suggest closing as Not A Defect. Addressed by P1009. No objection to unanimous consent. |
NAD | |
Core |
Language linkage and function type compatibility |
Currently function types with different language linkage are not compatible, and 7.6.1.2 [expr.call] paragraph 1 makes it undefined behavior to call a function via a type with a different language linkage. These features are generally not enforced by most current implementations (although some do) between functions with C and C++ language linkage. Should these restrictions be relaxed, perhaps as conditionally-supported behavior? Somewhat related to CWG1463. Meeting: (notes) no strong consensus at the moment, Erich Keane brought this up with SG12 Undefined Behavior. Long discussion, will need to revisit, need a paper. Meeting Oct 22nd 2020: will need a volunteer to write a paper, but the wording in the standard is unambiguous, and we have existence proof of platforms which use different calling conventions between C and C++. However many major compilers have chosen to ignore this. Not a defect, but we welcome a paper to change the status quo. No objection to unanimous consent. |
NAD | |
Core |
Default arguments for template parameter packs |
Although 13.2 [temp.param] paragraph 9 forbids default arguments for template parameter packs, allowing them would make some program patterns easier to write. Should this restriction be removed? Meeting: (notes) Suggest closing as Not A Defect. Interesting design space, but needs a paper, see N3416. No objection to unanimous consent. |
NAD | |
Core |
List-initialization of array objects |
The resolution of issue 1467 now allows for initialization of aggregate classes from an object of the same type. Similar treatment should be afforded to array aggregates. See recent discussion on allowing 'auto x[] = {1, 2, 3};' -- this topic came up there. The two questions can be answered independently, but some consider them to be related. Meeting: (notes) Suggest closing as Not A Defect. Fixing anything in this space would require a paper which considers the entire design space, Timur might be interested in this. No objection to unanimous consent. |
NAD | |
Core |
Non-identifier characters in ud-suffix |
JF forwarded to SG16 Unicode given their work on TR31. Tracked on GitHub. SG16 reviewed D1949R3, still needs wording changes. Discussed at the April 22nd SG16 telecon. SG16 Poll: Is there any objection to unanimous consent for recommending rejection of this proposal? No objection to unanimous consent. EWG Meeting: (notes 2020-04-15, notes 2020-05-07) Suggest closing as Not A Defect. No objection to unanimous consent. |
NAD | |
Core |
Preventing explicit specialization |
A desire has been expressed for a mechanism to prevent explicitly specializing a given class template, in particular std::initializer_list and perhaps some others in the standard library. It is not clear whether simply adding a prohibition to the description of the templates in the library clauses would be sufficient or whether a core language mechanism is required. Meeting: (notes) Suggest closing as Not A Defect. No objection to unanimous consent. This could be a language feature, would need library usecase examples. Poll: we are interested in such a paper SF 2 F 13 N 6 A 1 SA 0 |
NAD | |
Core |
Potentially-invoked destructors in non-throwing constructors |
Since the base class constructor is non-throwing, the deleted base class destructor need not be referenced. Thereâs a typo in the issues list here: it should say "Since the derived class constructor is non-throwing, the deleted base class destructor need not be referenced." Meeting: (notes 2020-04-23) the proposed wording changes the implementation leeway in two-phase unwinding, which breaks some existing ABIs. We would need a paper to explore this further. Suggest closing as Not A Defect. No objection to unanimous consent. |
NAD | |
Core |
Lvalues of type void |
There does not seem to be any significant technical obstacle to allowing a void* pointer to be dereferenced, and that would avoid having to use weighty circumlocutions when casting to a reference to an object designated by such a pointer. Might consider this a duplicate of the discussion on "regular void". JF reached out to Matt. He has an implementation in clang. Needs to update the paper. Might need a volunteer to present. Daveed would be interested in presenting. Meeting: (notes 2020-04-23) Suggest closing as Not A Defect. Explore under the âregular voidâ umbrella. No objection to unanimous consent. |
NAD | |
Core |
Relaxing exception-specification compatibility requirements |
According to 14.5 [except.spec] paragraph 4, If any declaration of a function has an exception-specification that is not a noexcept-specification allowing all exceptions, all declarations, including the definition and any explicit specialization, of that function shall have a compatible exception-specification. This seems excessive for explicit specializations, considering that paragraph 6 applies a looser requirement for virtual functions: If a virtual function has an exception-specification, all declarations, including the definition, of any function that overrides that virtual function in any derived class shall only allow exceptions that are allowed by the exception-specification of the base class virtual function. The rule in paragraph 3 is also problematic in regard to explicit specializations of destructors and defaulted special member functions, as the implicit exception-specification of the template member function cannot be determined. There is also a related problem with defaulted special member functions and exception-specifications. According to 9.5.2 [dcl.fct.def.default] paragraph 3, If a function that is explicitly defaulted has an explicit exception-specification that is not compatible (14.5 [except.spec]) with the exception-specification on the implicit declaration, then
This rule precludes defaulting a virtual base class destructor or copy/move functions if the derived class function will throw an exception not allowed by the implicit base class member function. Meeting: (notes 2020-04-23) JF will work with Mike to update wording to C++20. Will revisit. From Mike: This issue is NAD since we eliminated typed exception-specifications. The current wording, dealing only with noexcept(true) and noexcept(false), does not have this issue. Will remove âextensionâ status. Meeting: no objection to CWG taking it back, and marking it as NAD. |
NAD | |
Core |
decltype(auto) with direct-list-initialization |
Paper N3922 changed the rules for deduction from a braced-init-list containing a single expression in a direct-initialization context. Should a corresponding change be made for decltype(auto)? E.g.,   auto x8a = { 1 };      // decltype(x8a) is std::initializer_list<int>   decltype(auto) x8d = { 1 }; // ill-formed, a braced-init-list is not an expression   auto x9a{ 1 };       // decltype(x9a) is int   decltype(auto) x9d{ 1 };  // decltype(x9d) is int See also issue 1467, which also effectively ignores braces around a single expression, this change would be parallel to that one, even though the primary motivation for delctype(auto) is in the return type of a forwarding function, where direct-initialization does not apply. Meeting: (notes 2020-04-23) Suggest closing as Not A Defect. This would be a language change, itâs unclear that we want to make such a change. It would require a paper. Mike Spertus is writing a paper with some overlap, will cover this as well. No objection to unanimous consent. |
NAD | |
Core |
Array temporaries in reference binding |
The current wording of the Standard appears to permit code like
creating a temporary array of ten elements and binding the parameter reference to it. This is controversial and should be reconsidered. (See issues 1058 and 1232.) Meeting: (notes 2020-04-23) JF digging more, talking to Richard about this. Somewhat related to P2174 compound literals. Would be very strange if  ... were invalid but ...   ... were both OK. Maybe either we should allow the trailing elements to be zeroed in general (the status quo), or not (a major breaking change). Which means we should reject the issue on consistency grounds. The general rule is that if  T &&r = init; ... canât bind directly, we create a temporary initialized as if with  T r = init; ... and bind to that. (And similarly for const references.) Another question: Do we want to support (T){inits} as a synonym for T{inits}? Meeting Oct 22nd 2020: Note that the issue itself is defective, and CWG2352 references p1358, and was resolved, leading us to believe that this is now mainstream and not controversial. Not a defect. No objection to unanimous consent. |
NAD | |
Core |
Copy elision and comma operator |
Currently, _N4750_.15.8 [class.copy] paragraphs 31-32 apply only to the name of a local variable in determining whether a return expression is a candidate for copy elision or move construction. Would it make sense to extend that to include the right operand of a comma operator? X f() { Â Â X x; Â Â return (0, x); } Meeting: (notes 2020-04-23) Consider expanding to other places that expand bit-field-ness such as return b ? throw : x;. Suggest closing as Not A Defect. Will need a paper to address, no current volunteer for this. No objection to unanimous consent. |
NAD | |
Core |
Deprecated default generated copy constructors |
EWG has indicated that they are not currently in favor of removing the implicitly declared defaulted copy constructors and assignment operators that are eprecated in _N4750_.15.8 [class.copy] paragraphs 7 and 18. Should this deprecation be removed? Related: discussing under p2139 deprecations. Meeting: (note 2020-04-29) Suggest closing as Not A Defect. No objection to unanimous consent. We either want to remove entirely, or un-deprecate. This will need a paper, Ville will talk with Alisdair about forking the topic from p2139. |
NAD | |
Core |
Value-initialization of array types |
Although value-initialization is defined for array types and the () initializer is permitted in a mem-initializer naming an array member of a class, the syntax T() (where is an array type) is explicitly forbidden by 7.6.1.3 [expr.type.conv] paragraph 2. This is inconsistent and the syntax should be permitted. Rationale (July, 2009): The CWG was not convinced of the utility of this extension, especially in light of questions about handling the lifetime of temporary arrays. This suggestion needs a proposal and analysis by the EWG before it can be considered by the CWG. This has become a more severe inconsistency after we adopted Villeâs P0960 for C++20. Now itâs not only () that has this weird special-case restriction, itâs (a, b, c) too: using X = int[]; X x{1, 2, 3}; // ok, int[3] X y(1, 2, 3); // ok, int[3] f(X{1, 2, 3}); // ok, int[3] temporary f(X(1, 2, 3)); // error Meeting: (notes) it is a defect, need a paper. David Stone trying to find a volunteer to write said paper. All in favor. |
Paper needed | |
Core |
extern "C" alias templates |
Currently 13 [temp] paragraph 4 forbids any template from having C linkage. Should alias templates be exempt from this prohibition, since they do not have any linkage? Additional note, April, 2013: It was suggested (see messages 23364 through 23367) that relaxing this restriction for alias templates could provide a way of addressing the long-standing lack of a way of specifying a language linkage for a dependent function type (see issue 13). The priority was deleted to allow CWG to consider the implications of that potential application of the facility. We should either have some way to express a dependent function type with C language linkage (and should accept 1555 below) or we should remove the notion that C language linkage (or not) is part of the function type at all. (Apparently some targets used it; are they still in use? EDG probably knows.) Actively discussed on CWG reflector. Davisâ interpretation of CWG discussion: I donât speak for Core, of course, but my (Evolutionary) thoughts are those given (last) in the message to which you replied: neither the wording nor the apparent intent of [temp.pre]/6âs restrictions on C linkage for templates make any sense. Since templates (and explicit specializations) canât have C linkage of the name-mangling variety (which the standard calls language linkage of a (function) name) but can have C linkage of the calling-convention variety (which the standard calls language linkage of a (function) type), extern "C" should grant them the latter and not the former with no error. This has certain obvious applications involving C APIs with callbacks. (Put differently, CWG13 shouldnât have been rejected; it appears to have gotten bogged down in questions of syntax, but we have an adequate syntactic workaround that we merely have to permit.) CWG1463 asks for a (very) proper subset of the above: merely that extern "C" be allowed to apply to alias templates (claiming incorrectly that they have no name with linkage at all). I consider it more relevant (and more productive) to talk about whether entities have names with language linkage than with the ordinary kind. The Core reflector discussion (which seems to have finished for the moment) also touched on the case where "the same" function template is declared with two different language linkages for its type, but the only relevant Evolution input there would be a decision to go the opposite way and forbid function templates from having types with C language linkage entirely. (They currently can, but itâs mostly or entirely useless.) If (for CWG1555, also on your list) the rules about language linkage of (function) types are sufficiently relaxed, then CWG1463 may be moot (and my extension of it with it), but that seems unlikely given Hubertâs recent identification of a case where they matter. Meeting: (notes 2020-04-15, notes 2020-10-22, also discussed in Rapperswil 2014) We agree that this is an issue. extern âCâ on a template should only affect calling convention, and not the mangling. Davis and Hubert volunteer to write a paper. Unanimous consent. |
Paper needed | |
Core |
Ellipsis following function parameter pack |
Although the current wording permits an ellipsis to immediately follow a function parameter pack, it is not clear that the <cstdarg> facilities permit access to the ellipsis arguments. The problem here (which is not explained in the issue) is: how do you supply the name of the last parameter before the ellipsis to va_start? You canât put the name of a pack there (it wouldnât be expanded) and thereâs no way to name the last element of the pack (nor to deal with the case where the pack is empty). Meeting: (notes) 3 options: fix wording around âlast parameterâ, remove facility entirely (either va_start or function declarator), try to invent a language facility. JF emailed EWG to see if anyone has a strong preference, or if we should send back to CWG to fix wording, long discussion. Michael Spertus: I am willing to commit to including and analysis on this in an upcoming paper on parameter packs. JF followed up with Michael and Barry, no response. |
Paper needed | |
Core |
Type of __func__ |
Two questions have arisen regarding the treatment of the type of the __func__ built-in variable. First, some implementations accept   void f() {     typedef decltype(__func__) T;     T x = __func__;   } even though T is specified to be an array type. In a related question, it was noted that __func__ is implicitly required to be unique in each function, and that not only the value but the type of __func__ are implementation-defined; e.g., in something like   inline auto f() { return &__func__; } the function type is implementation-specific. These concerns could be addressed by making the value a prvalue of type const char* instead of an array lvalue. Rationale (November, 2018): See also issue 2362, which asks for the ability to use __func__ in a constexpr function. These two goals are incompatible. The deep question here is about __func__ and the ODR. Does EWG want implementations to somehow behave as if __func__ is the same in all copies of an inline function (in which case it can have an array type and be usable in constant expressions, but the demangling algorithm used to construct it becomes part of the ABI), or does EWG want implementations to behave as if __func__ may differ between copies, so is in effect not known until runtime (in which case it must have either pointer or incomplete array type, and its value is not usable in constant expressions -- but its address could still be usable). Note: C++20 has std::source_location::function_name. Meeting: (notes 2020-04-23) We should discuss this with WG14. This is indeed a language issue. No objection to unanimous consent. Weâll need a paper, potentially considering what Reflection could do, JF brought it up on the mailing list. We probably need a paper to disentangle this. |
Paper needed | |
Core |
Ambiguity resolution for cast to function type |
C++ has a blanket disambiguation rule that says if a sequence of tokens can be interpreted as either a type-name or an expression, the type-name interpretation is chosen. This is unhelpful in cases like     (T())+3 where the current rules make "(T())" a cast to the type "function with no parameters returning T" rather than a parenthesized value-initialization of a temporary of type T. The former interpretation is always ill-formed - you canât cast to a function type - while the latter could be useful. Richardâs proposed resolution, cited above, is to avoid the ambiguity by changing the grammar so that cases like "(T())" cannot be parsed as a cast. The wording in the proposal applies that change to a number of different contexts where the ambiguity can come into play. There are two contexts where the change is _not_ applied, however: 1) the operand of typeid, and 2) a template-argument. During our discussion yesterday, there was some support for the idea of applying the change to typeid, as well, although that would be a breaking change for any programs that rely on the current disambiguation to get type information for such function types. There was general agreement, however, to exclude template arguments, since they are used for things like std::function. CWG would, therefore, like some guidance from EWG on two questions. First, should we apply the new syntax to the operand of typeid, even though itâs a breaking change? More generally, the question was raised whether we should make this change at all. Although resolving the ambiguity in the other direction would arguably be more convenient in many cases, there is a tension between that convenience and the complexity of the language. In particular, we would be creating a situation where the exact same sequence of tokens would mean two different things, depending on the context in which they appear. Is the convenience worth the cost in complexity? Meeting: (note 2020-04-29, notes 2020-03-23, note from Core summer 2020, notes from Core Prague 2020, notes from Core 2019-01-07, notes from Core Kona 2019, notes from Core Cologne 2019) This is an issue, weâd like to change the standard to resolve it: SF 0 F 6 N 4 A 3 SA 2 Davis emailed EWG reflector. Long discussion. |
Paper needed | |
Core |
Are default argument instantiation failures in the âimmediate contextâ? |
Example 1: template <typename T, typename U = T> void fun(T v, U u = U()) {} void fun(...) {} struct X { Â Â Â Â X(int) {} // no default ctor }; int main()Â {Â fun (X(1)); } Consider the following example (taken from issue 3 of paper P0348R0): Example 2: Â Â template <typename U> void fun(U u = U()); Â Â struct X { Â Â Â Â X(int) {} Â Â }; Â Â template <class T> decltype(fun<T>()) g(int) { } Â Â template <class> void g(long) { } Â Â int main() { g<X>(0); } When is the substitution into the return type done? The current specification makes this example ill-formed because the failure to instantiate the default argument in the decltype operand is not in the immediate context of the substitution, although a plausible argument for making this a SFINAE case can be made. Meeting:Â (notes 2020-05-07) The first example under issue 3 of paper P0348R0 should become well-formed. SF F N A SA 0 1 4 3 6 The second example under issue 3 of paper P0348R0 should become well-formed. SF F N A SA 1 5 7 3 0 This is an issue. Weâd like to see a paper addressing it. It should explore what âImmediate contextâ means. No objection to unanimous consent. Daveed / Hubert might entertain writing a paper explaining this. Ville emailed EWG about this. JF contacted Andrzej to see if heâs interested in addressing this. Not sure he is. Meeting 2020-10-28: Tomasz will write a paper which exposes the issue and what he thinks should be done (but not resolving wording itself). Hubert remembers an email about this, will find it and sync with JF. Meeting 2021-01-14: Andrzej wrote a paper for this (emailed 2021-01-12 to EWG). |
Paper needed | |
Core |
__func__ should be constexpr |
The definition of __func__ in 9.5.1 [dcl.fct.def.general] paragraph 8 is:   static const char __func__[] = "function-name"; This prohibits its use in constant expressions, e.g.,   int main () {     // error: the value of __func__ is not usable in a constant expression     constexpr char c = __func__[0];   } Rationale (November, 2018): See also issue 1962, which asks that the type of __func__ be const char*. These two goals are incompatible. Meeting: handle with 1962. |
Paper needed |
9. Near-future EWG plans
We will continue to work on issue resolution, handle any C++23 fixes, start working on C++26, prioritizing according to [P0592R4].