<!doctype html><html lang="en">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
  <title>P1018R15: C++ Language Evolution status 🦠 pandemic edition 🦠 2022/01–2022/02</title>
<style data-fill-with="stylesheet">/******************************************************************************
 *                   Style sheet for the W3C specifications                   *
 *
 * Special classes handled by this style sheet include:
 *
 * Indices
 *   - .toc for the Table of Contents (<ol class="toc">)
 *     + <span class="secno"> for the section numbers
 *   - #toc for the Table of Contents (<nav id="toc">)
 *   - ul.index for Indices (<a href="#ref">term</a><span>, in §N.M</span>)
 *   - table.index for Index Tables (e.g. for properties or elements)
 *
 * Structural Markup
 *   - table.data for general data tables
 *     -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results !
 *     -> use <table class='complex data'> for extra-complex tables
 *     -> use <td class='long'> for paragraph-length cell content
 *     -> use <td class='pre'> when manual line breaks/indentation would help readability
 *   - dl.switch for switch statements
 *   - ol.algorithm for algorithms (helps to visualize nesting)
 *   - .figure and .caption (HTML4) and figure and figcaption (HTML5)
 *     -> .sidefigure for right-floated figures
 *   - ins/del
 *
 * Code
 *   - pre and code
 *
 * Special Sections
 *   - .note       for informative notes             (div, p, span, aside, details)
 *   - .example    for informative examples          (div, p, pre, span)
 *   - .issue      for issues                        (div, p, span)
 *   - .assertion  for assertions                    (div, p, span)
 *   - .advisement for loud normative statements     (div, p, strong)
 *   - .annoying-warning for spec obsoletion notices (div, aside, details)
 *
 * Definition Boxes
 *   - pre.def   for WebIDL definitions
 *   - table.def for tables that define other entities (e.g. CSS properties)
 *   - dl.def    for definition lists that define other entitles (e.g. HTML elements)
 *
 * Numbering
 *   - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>)
 *   - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>)
 *   - ::before styled for CSS-generated issue/example/figure numbers:
 *     -> Documents wishing to use this only need to add
 *        figcaption::before,
 *        .caption::before { content: "Figure "  counter(figure) " ";  }
 *        .example::before { content: "Example " counter(example) " "; }
 *        .issue::before   { content: "Issue "   counter(issue) " ";   }
 *
 * Header Stuff (ignore, just don't conflict with these classes)
 *   - .head for the header
 *   - .copyright for the copyright
 *
 * Miscellaneous
 *   - .overlarge for things that should be as wide as possible, even if
 *     that overflows the body text area. This can be used on an item or
 *     on its container, depending on the effect desired.
 *     Note that this styling basically doesn't help at all when printing,
 *     since A4 paper isn't much wider than the max-width here.
 *     It's better to design things to fit into a narrower measure if possible.
 *   - js-added ToC jump links (see fixup.js)
 *
 ******************************************************************************/

/* color variables included separately for reliability */

/******************************************************************************/
/*                                   Body                                     */
/******************************************************************************/

	html {
		color: black;
		color: var(--text);
		background-color: white;
		background-color: var(--bg);
	}

	body {
		counter-reset: example figure issue;

		/* Layout */
		max-width: 50em;               /* limit line length to 50em for readability   */
		margin: 0 auto;                /* center text within page                     */
		padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */
		padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag     */

		/* Typography */
		line-height: 1.5;
		font-family: sans-serif;
		widows: 2;
		orphans: 2;
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: auto;

		background: transparent top left fixed no-repeat;
		background-size: 25px auto;
	}


/******************************************************************************/
/*                         Front Matter & Navigation                          */
/******************************************************************************/

/** Header ********************************************************************/

	div.head { margin-bottom: 1em }
	div.head hr { border-style: solid; }

	div.head h1 {
		font-weight: bold;
		margin: 0 0 .1em;
		font-size: 220%;
	}

	div.head h2 { margin-bottom: 1.5em;}

/** W3C Logo ******************************************************************/

	.head .logo {
		float: right;
		margin: 0.4rem 0 0.2rem .4rem;
	}

	.head img[src*="logos/W3C"] {
		display: block;
		border: solid #1a5e9a;
		border: solid var(--logo-bg);
		border-width: .65rem .7rem .6rem;
		border-radius: .4rem;
		background: #1a5e9a;
		background: var(--logo-bg);
		color: white;
		color: var(--logo-text);
		font-weight: bold;
	}

	.head a:hover > img[src*="logos/W3C"],
	.head a:focus > img[src*="logos/W3C"] {
		opacity: .8;
	}

	.head a:active > img[src*="logos/W3C"] {
		background: #c00;
		background: var(--logo-active-bg);
		border-color: #c00;
		border-color: var(--logo-active-bg);
	}

	/* see also additional rules in Link Styling section */

/** Copyright *****************************************************************/

	p.copyright,
	p.copyright small { font-size: small }

/** Back to Top / ToC Toggle **************************************************/

	@media print {
		#toc-nav {
			display: none;
		}
	}
	@media not print {
		#toc-nav {
			position: fixed;
			z-index: 2;
			bottom: 0; left: 0;
			margin: 0;
			min-width: 1.33em;
			border-top-right-radius: 2rem;
			box-shadow: 0 0 2px;
			font-size: 1.5em;
		}
		#toc-nav > a {
			display: block;
			white-space: nowrap;

			height: 1.33em;
			padding: .1em 0.3em;
			margin: 0;

			box-shadow: 0 0 2px;
			border: none;
			border-top-right-radius: 1.33em;

			color: #707070;
			color: var(--tocnav-normal-text);
			background: white;
			background: var(--tocnav-normal-bg);
		}
		#toc-nav > a:hover,
		#toc-nav > a:focus {
			color: black;
			color: var(--tocnav-hover-text);
			background: #f8f8f8;
			background: var(--tocnav-hover-bg);
		}
		#toc-nav > a:active {
			color: #c00;
			color: var(--tocnav-active-text);
			background: white;
			background: var(--tocnav-active-bg);
		}

		#toc-nav > #toc-jump {
			padding-bottom: 2em;
			margin-bottom: -1.9em;
		}

		/* statusbar gets in the way on keyboard focus; remove once browsers fix */
		#toc-nav > a[href="#toc"]:not(:hover):focus:last-child {
			padding-bottom: 1.5rem;
		}

		#toc-nav:not(:hover) > a:not(:focus) > span + span {
			/* Ideally this uses :focus-within on #toc-nav */
			display: none;
		}
		#toc-nav > a > span + span {
			padding-right: 0.2em;
		}
	}

/** ToC Sidebar ***************************************************************/

	/* Floating sidebar */
	@media screen {
		body.toc-sidebar #toc {
			position: fixed;
			top: 0; bottom: 0;
			left: 0;
			width: 23.5em;
			max-width: 80%;
			max-width: calc(100% - 2em - 26px);
			overflow: auto;
			padding: 0 1em;
			padding-left: 42px;
			padding-left: calc(1em + 26px);
			color: black;
			color: var(--tocsidebar-text);
			background: inherit;
			background-color: #f7f8f9;
			background-color: var(--tocsidebar-bg);
			z-index: 1;
			box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset;
			box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset;
		}
		body.toc-sidebar #toc h2 {
			margin-top: .8rem;
			font-variant: small-caps;
			font-variant: all-small-caps;
			text-transform: lowercase;
			font-weight: bold;
			color: gray;
			color: hsla(203,20%,40%,.7);
			color: var(--tocsidebar-heading-text);
		}
		body.toc-sidebar #toc-jump:not(:focus) {
			width: 0;
			height: 0;
			padding: 0;
			position: absolute;
			overflow: hidden;
		}
	}
	/* Hide main scroller when only the ToC is visible anyway */
	@media screen and (max-width: 28em) {
		body.toc-sidebar {
			overflow: hidden;
		}
	}

	/* Sidebar with its own space */
	@media screen and (min-width: 78em) {
		body:not(.toc-inline) #toc {
			position: fixed;
			top: 0; bottom: 0;
			left: 0;
			width: 23.5em;
			overflow: auto;
			padding: 0 1em;
			padding-left: 42px;
			padding-left: calc(1em + 26px);
			color: black;
			color: var(--tocsidebar-text);
			background: inherit;
			background-color: #f7f8f9;
			background-color: var(--tocsidebar-bg);
			z-index: 1;
			box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset;
			box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset;
		}
		body:not(.toc-inline) #toc h2 {
			margin-top: .8rem;
			font-variant: small-caps;
			font-variant: all-small-caps;
			text-transform: lowercase;
			font-weight: bold;
			color: gray;
			color: hsla(203,20%,40%,.7);
			color: var(--tocsidebar-heading-text);
		}

		body:not(.toc-inline) {
			padding-left: 29em;
		}
		/* See also Overflow section at the bottom */

		body:not(.toc-inline) #toc-jump:not(:focus) {
			width: 0;
			height: 0;
			padding: 0;
			position: absolute;
			overflow: hidden;
		}
	}
	@media screen and (min-width: 90em) {
		body:not(.toc-inline) {
			margin: 0 4em;
		}
	}

/******************************************************************************/
/*                                Sectioning                                  */
/******************************************************************************/

/** Headings ******************************************************************/

	h1, h2, h3, h4, h5, h6, dt {
		page-break-after: avoid;
		page-break-inside: avoid;
		font: 100% sans-serif;   /* Reset all font styling to clear out UA styles */
		font-family: inherit;    /* Inherit the font family. */
		line-height: 1.2;        /* Keep wrapped headings compact */
		hyphens: manual;         /* Hyphenated headings look weird */
	}

	h2, h3, h4, h5, h6 {
		margin-top: 3rem;
	}

	h1, h2, h3 {
		color: #005A9C;
		color: var(--heading-text);
	}

	h1 { font-size: 170%; }
	h2 { font-size: 140%; }
	h3 { font-size: 120%; }
	h4 { font-weight: bold; }
	h5 { font-style: italic; }
	h6 { font-variant: small-caps; }
	dt { font-weight: bold; }

/** Subheadings ***************************************************************/

	h1 + h2,
	#subtitle {
		/* #subtitle is a subtitle in an H2 under the H1 */
		margin-top: 0;
	}
	h2 + h3,
	h3 + h4,
	h4 + h5,
	h5 + h6 {
		margin-top: 1.2em; /* = 1 x line-height */
	}

/** Section divider ***********************************************************/

	:not(.head) > :not(.head) + hr {
		font-size: 1.5em;
		text-align: center;
		margin: 1em auto;
		height: auto;
		color: black;
		color: var(--hr-text);
		border: transparent solid 0;
		background: transparent;
	}
	:not(.head) > hr::before {
		content: "\2727\2003\2003\2727\2003\2003\2727";
	}

/******************************************************************************/
/*                            Paragraphs and Lists                            */
/******************************************************************************/

	p {
		margin: 1em 0;
	}

	dd > p:first-child,
	li > p:first-child {
		margin-top: 0;
	}

	ul, ol {
		margin-left: 0;
		padding-left: 2em;
	}

	li {
		margin: 0.25em 0 0.5em;
		padding: 0;
	}

	dl dd {
		margin: 0 0 .5em 2em;
	}

	.head dd + dd { /* compact for header */
		margin-top: -.5em;
	}

	/* Style for algorithms */
	ol.algorithm ol:not(.algorithm),
	.algorithm > ol ol:not(.algorithm) {
	 border-left: 0.5em solid #DEF;
	 border-left: 0.5em solid var(--algo-border);
	}

	/* Put nice boxes around each algorithm. */
	[data-algorithm]:not(.heading) {
	  padding: .5em;
	  border: thin solid #ddd;
	  border: thin solid var(--algo-border);
	  border-radius: .5em;
	  margin: .5em calc(-0.5em - 1px);
	}
	[data-algorithm]:not(.heading) > :first-child {
	  margin-top: 0;
	}
	[data-algorithm]:not(.heading) > :last-child {
	  margin-bottom: 0;
	}

	/* Style for switch/case <dl>s */
	dl.switch > dd > ol.only,
	dl.switch > dd > .only > ol {
	 margin-left: 0;
	}
	dl.switch > dd > ol.algorithm,
	dl.switch > dd > .algorithm > ol {
	 margin-left: -2em;
	}
	dl.switch {
	 padding-left: 2em;
	}
	dl.switch > dt {
	 text-indent: -1.5em;
	 margin-top: 1em;
	}
	dl.switch > dt + dt {
	 margin-top: 0;
	}
	dl.switch > dt::before {
	 content: '\21AA';
	 padding: 0 0.5em 0 0;
	 display: inline-block;
	 width: 1em;
	 text-align: right;
	 line-height: 0.5em;
	}

/** Terminology Markup ********************************************************/


/******************************************************************************/
/*                                 Inline Markup                              */
/******************************************************************************/

/** Terminology Markup ********************************************************/
	dfn   { /* Defining instance */
		font-weight: bolder;
	}
	a > i { /* Instance of term */
		font-style: normal;
	}
	dt dfn code, code.idl {
		font-size: medium;
	}
	dfn var {
		font-style: normal;
	}

/** Change Marking ************************************************************/

	del {
		color: red;
		color: var(--del-text);
		background: transparent;
		background: var(--del-bg);
		text-decoration: line-through;
	}
	ins {
		color: #080;
		color: var(--ins-text);
		background: transparent;
		background: var(--ins-bg);
		text-decoration: underline;
	}

/** Miscellaneous improvements to inline formatting ***************************/

	sup {
		vertical-align: super;
		font-size: 80%
	}

/******************************************************************************/
/*                                    Code                                    */
/******************************************************************************/

/** General monospace/pre rules ***********************************************/

	pre, code, samp {
		font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace;
		font-size: .9em;
		hyphens: none;
		text-transform: none;
		text-align: left;
		text-align: start;
		font-variant: normal;
		orphans: 3;
		widows: 3;
		page-break-before: avoid;
	}
	pre code,
	code code {
		font-size: 100%;
	}

	pre {
		margin-top: 1em;
		margin-bottom: 1em;
		overflow: auto;
	}

/** Inline Code fragments *****************************************************/

  /* Do something nice. */

/******************************************************************************/
/*                                    Links                                   */
/******************************************************************************/

/** General Hyperlinks ********************************************************/

	/* We hyperlink a lot, so make it less intrusive */
	a[href] {
		color: #034575;
		color: var(--a-normal-text);
		text-decoration: none;
		border-bottom: 1px solid #707070;
		border-bottom: 1px solid var(--a-normal-underline);
		/* Need a bit of extending for it to look okay */
		padding: 0 1px 0;
		margin: 0 -1px 0;
	}
	a:visited {
		color: #034575;
		color: var(--a-visited-text);
		border-bottom-color: #bbb;
		border-bottom-color: var(--a-visited-underline);
	}

	/* Use distinguishing colors when user is interacting with the link */
	a[href]:focus,
	a[href]:hover {
		background: #f8f8f8;
		background: rgba(75%, 75%, 75%, .25);
		background: var(--a-hover-bg);
		border-bottom-width: 3px;
		margin-bottom: -2px;
	}
	a[href]:active {
		color: #c00;
		color: var(--a-active-text);
		border-color: #c00;
		border-color: var(--a-active-underline);
	}

	/* Backout above styling for W3C logo */
	.head .logo,
	.head .logo a {
		border: none;
		text-decoration: none;
		background: transparent;
	}

/******************************************************************************/
/*                                    Images                                  */
/******************************************************************************/

	img {
		border-style: none;
	}

	img, svg {
		/* Intentionally not color-scheme aware. */
		background: white;
	}

	/* For autogen numbers, add
	   .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; }
	*/

	figure, .figure, .sidefigure {
		page-break-inside: avoid;
		text-align: center;
		margin: 2.5em 0;
	}
	.figure img,    .sidefigure img,    figure img,
	.figure object, .sidefigure object, figure object {
		max-width: 100%;
		margin: auto;
		height: auto;
	}
	.figure pre, .sidefigure pre, figure pre {
		text-align: left;
		display: table;
		margin: 1em auto;
	}
	.figure table, figure table {
		margin: auto;
	}
	@media screen and (min-width: 20em) {
		.sidefigure {
			float: right;
			width: 50%;
			margin: 0 0 0.5em 0.5em
		}
	}
	.caption, figcaption, caption {
		font-style: italic;
		font-size: 90%;
	}
	.caption::before, figcaption::before, figcaption > .marker {
		font-weight: bold;
	}
	.caption, figcaption {
		counter-increment: figure;
	}

	/* DL list is indented 2em, but figure inside it is not */
	dd > .figure, dd > figure { margin-left: -2em }

/******************************************************************************/
/*                             Colored Boxes                                  */
/******************************************************************************/

	.issue, .note, .example, .assertion, .advisement, blockquote {
		padding: .5em;
		border: .5em;
		border-left-style: solid;
		page-break-inside: avoid;
	}
	span.issue, span.note {
		padding: .1em .5em .15em;
		border-right-style: solid;
	}

	.issue,
	.note,
	.example,
	.advisement,
	.assertion,
	blockquote {
		margin: 1em auto;
	}
	.note  > p:first-child,
	.issue > p:first-child,
	blockquote > :first-child {
		margin-top: 0;
	}
	blockquote > :last-child {
		margin-bottom: 0;
	}


	.issue::before, .issue > .marker,
	.example::before, .example > .marker,
	.note::before, .note > .marker,
	details.note > summary > .marker {
		text-transform: uppercase;
		padding-right: 1em;
	}

	.example::before, .example > .marker {
		display: block;
		padding-right: 0em;
	}

/** Blockquotes ***************************************************************/

	blockquote {
		border-color: silver;
		border-color: var(--blockquote-border);
		background: transparent;
		background: var(--blockquote-bg);
		color: currentcolor;
		color: var(--blockquote-text);
	}

/** Open issue ****************************************************************/

	.issue {
		border-color: #e05252;
		border-color: var(--issue-border);
		background: #fbe9e9;
		background: var(--issue-bg);
		color: black;
		color: var(--issue-text);
		counter-increment: issue;
		overflow: auto;
	}
	.issue::before, .issue > .marker {
		color: #831616;
		color: var(--issueheading-text);
	}
	/* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers,
	   or use class="marker" to mark up the issue number in source. */

/** Example *******************************************************************/

	.example {
		border-color: #e0cb52;
		border-color: var(--example-border);
		background: #fcfaee;
		background: var(--example-bg);
		color: black;
		color: var(--example-text);
		counter-increment: example;
		overflow: auto;
		clear: both;
	}
	.example::before, .example > .marker {
		color: #574b0f;
		color: var(--exampleheading-text);
	}
	/* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers,
	   or use class="marker" to mark up the example number in source. */

/** Non-normative Note ********************************************************/

	.note {
		border-color: #52e052;
		border-color: var(--note-border);
		background: #e9fbe9;
		background: var(--note-bg);
		color: black;
		color: var(--note-text);
		overflow: auto;
	}

	.note::before, .note > .marker,
	details.note > summary {
		color: hsl(120, 70%, 30%);
		color: var(--noteheading-text);
	}
	/* Add .note::before { content: "Note "; } for autogen label,
	   or use class="marker" to mark up the label in source. */

	details.note[open] > summary {
		border-bottom: 1px silver solid;
		border-bottom: 1px var(--notesummary-underline) solid;
	}

/** Assertion Box *************************************************************/
	/*  for assertions in algorithms */

	.assertion {
		border-color: #AAA;
		border-color: var(--assertion-border);
		background: #EEE;
		background: var(--assertion-bg);
		color: black;
		color: var(--assertion-text);
	}

/** Advisement Box ************************************************************/
	/*  for attention-grabbing normative statements */

	.advisement {
		border-color: orange;
		border-color: var(--advisement-border);
		border-style: none solid;
		background: #fec;
		background: var(--advisement-bg);
		color: black;
		color: var(--advisement-text);
	}
	strong.advisement {
		display: block;
		text-align: center;
	}
	.advisement::before, .advisement > .marker {
		color: #b35f00;
		color: var(--advisementheading-text);
	}

/** Spec Obsoletion Notice ****************************************************/
	/* obnoxious obsoletion notice for older/abandoned specs. */

	details {
		display: block;
	}
	summary {
		font-weight: bolder;
	}

	.annoying-warning:not(details),
	details.annoying-warning:not([open]) > summary,
	details.annoying-warning[open] {
		background: hsla(40,100%,50%,0.95);
		background: var(--warning-bg);
		color: black;
		color: var(--warning-text);
		padding: .75em 1em;
		border: red;
		border: var(--warning-border);
		border-style: solid none;
		box-shadow: 0 2px 8px black;
		text-align: center;
	}
	.annoying-warning :last-child {
		margin-bottom: 0;
	}

	@media not print {
		details.annoying-warning[open] {
			position: fixed;
			left: 0;
			right: 0;
			bottom: 2em;
			z-index: 1000;
		}
	}

	details.annoying-warning:not([open]) > summary {
		text-align: center;
	}

/** Entity Definition Boxes ***************************************************/

	.def {
		padding: .5em 1em;
		background: #def;
		background: var(--def-bg);
		margin: 1.2em 0;
		border-left: 0.5em solid #8ccbf2;
		border-left: 0.5em solid var(--def-border);
		color: black;
		color: var(--def-text);
	}

/******************************************************************************/
/*                                    Tables                                  */
/******************************************************************************/

	th, td {
		text-align: left;
		text-align: start;
	}

/** Property/Descriptor Definition Tables *************************************/

	table.def {
		/* inherits .def box styling, see above */
		width: 100%;
		border-spacing: 0;
	}

	table.def td,
	table.def th {
		padding: 0.5em;
		vertical-align: baseline;
		border-bottom: 1px solid #bbd7e9;
		border-bottom: 1px solid var(--defrow-border);
	}

	table.def > tbody > tr:last-child th,
	table.def > tbody > tr:last-child td {
		border-bottom: 0;
	}

	table.def th {
		font-style: italic;
		font-weight: normal;
		padding-left: 1em;
		width: 3em;
	}

	/* For when values are extra-complex and need formatting for readability */
	table td.pre {
		white-space: pre-wrap;
	}

	/* A footnote at the bottom of a def table */
	table.def td.footnote {
		padding-top: 0.6em;
	}
	table.def td.footnote::before {
		content: " ";
		display: block;
		height: 0.6em;
		width: 4em;
		border-top: thin solid;
	}

/** Data tables (and properly marked-up index tables) *************************/
	/*
		 <table class="data"> highlights structural relationships in a table
		 when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute)

		 Use class="complex data" for particularly complicated tables --
		 (This will draw more lines: busier, but clearer.)

		 Use class="long" on table cells with paragraph-like contents
		 (This will adjust text alignment accordingly.)
		 Alternately use class="longlastcol" on tables, to have the last column assume "long".
	*/

	table {
		word-wrap: normal;
		overflow-wrap: normal;
		hyphens: manual;
	}

	table.data,
	table.index {
		margin: 1em auto;
		border-collapse: collapse;
		border: hidden;
		width: 100%;
	}
	table.data caption,
	table.index caption {
		max-width: 50em;
		margin: 0 auto 1em;
	}

	table.data td,  table.data th,
	table.index td, table.index th {
		padding: 0.5em 1em;
		border-width: 1px;
		border-color: silver;
		border-color: var(--datacell-border);
		border-top-style: solid;
	}

	table.data thead td:empty {
		padding: 0;
		border: 0;
	}

	table.data  thead,
	table.index thead,
	table.data  tbody,
	table.index tbody {
		border-bottom: 2px solid;
	}

	table.data colgroup,
	table.index colgroup {
		border-left: 2px solid;
	}

	table.data  tbody th:first-child,
	table.index tbody th:first-child  {
		border-right: 2px solid;
		border-top: 1px solid silver;
		border-top: 1px solid var(--datacell-border);
		padding-right: 1em;
	}

	table.data th[colspan],
	table.data td[colspan] {
		text-align: center;
	}

	table.complex.data th,
	table.complex.data td {
		border: 1px solid silver;
		border: 1px solid var(--datacell-border);
		text-align: center;
	}

	table.data.longlastcol td:last-child,
	table.data td.long {
		vertical-align: baseline;
		text-align: left;
	}

	table.data img {
		vertical-align: middle;
	}


/*
Alternate table alignment rules

	table.data,
	table.index {
		text-align: center;
	}

	table.data  thead th[scope="row"],
	table.index thead th[scope="row"] {
		text-align: right;
	}

	table.data  tbody th:first-child,
	table.index tbody th:first-child  {
		text-align: right;
	}

Possible extra rowspan handling

	table.data  tbody th[rowspan]:not([rowspan='1']),
	table.index tbody th[rowspan]:not([rowspan='1']),
	table.data  tbody td[rowspan]:not([rowspan='1']),
	table.index tbody td[rowspan]:not([rowspan='1']) {
		border-left: 1px solid silver;
	}

	table.data  tbody th[rowspan]:first-child,
	table.index tbody th[rowspan]:first-child,
	table.data  tbody td[rowspan]:first-child,
	table.index tbody td[rowspan]:first-child{
		border-left: 0;
		border-right: 1px solid silver;
	}
*/

/******************************************************************************/
/*                                  Indices                                   */
/******************************************************************************/


/** Table of Contents *********************************************************/

	.toc a {
		/* More spacing; use padding to make it part of the click target. */
		padding-top: 0.1rem;
		/* Larger, more consistently-sized click target */
		display: block;
		/* Reverse color scheme */
		color: black;
		color: var(--toclink-text);
		border-color: #3980b5;
		border-color: var(--toclink-underline);
	}
	.toc a:visited {
		color: black;
		color: var(--toclink-visited-text);
		border-color: #054572;
		border-color: var(--toclink-visited-underline);
	}
	.toc a:not(:focus):not(:hover) {
		/* Allow colors to cascade through from link styling */
		border-bottom-color: transparent;
	}

	.toc, .toc ol, .toc ul, .toc li {
		list-style: none; /* Numbers must be inlined into source */
		/* because generated content isn't search/selectable and markers can't do multilevel yet */
		margin:  0;
		padding: 0;
		line-height: 1.1rem; /* consistent spacing */
	}

	/* ToC not indented until third level, but font style & margins show hierarchy */
	.toc > li             { font-weight: bold;   }
	.toc > li li          { font-weight: normal; }
	.toc > li li li       { font-size:   95%;    }
	.toc > li li li li    { font-size:   90%;    }
	.toc > li li li li .secno { font-size: 85%; }
	.toc > li li li li li { font-size:   85%;    }
	.toc > li li li li li .secno { font-size: 100%; }

	/* @supports not (display:grid) { */
		.toc > li             { margin: 1.5rem 0;    }
		.toc > li li          { margin: 0.3rem 0;    }
		.toc > li li li       { margin-left: 2rem;   }

		/* Section numbers in a column of their own */
		.toc .secno {
			float: left;
			width: 4rem;
			white-space: nowrap;
		}

		.toc li {
			clear: both;
		}

		:not(li) > .toc              { margin-left:  5rem; }
		.toc .secno                  { margin-left: -5rem; }
		.toc > li li li .secno       { margin-left: -7rem; }
		.toc > li li li li .secno    { margin-left: -9rem; }
		.toc > li li li li li .secno { margin-left: -11rem; }

		/* Tighten up indentation in narrow ToCs */
		@media (max-width: 30em) {
			:not(li) > .toc              { margin-left:  4rem; }
			.toc .secno                  { margin-left: -4rem; }
			.toc > li li li              { margin-left:  1rem; }
			.toc > li li li .secno       { margin-left: -5rem; }
			.toc > li li li li .secno    { margin-left: -6rem; }
			.toc > li li li li li .secno { margin-left: -7rem; }
		}
		/* Loosen it on wide screens */
		@media screen and (min-width: 78em) {
			body:not(.toc-inline) :not(li) > .toc              { margin-left:  4rem; }
			body:not(.toc-inline) .toc .secno                  { margin-left: -4rem; }
			body:not(.toc-inline) .toc > li li li              { margin-left:  1rem; }
			body:not(.toc-inline) .toc > li li li .secno       { margin-left: -5rem; }
			body:not(.toc-inline) .toc > li li li li .secno    { margin-left: -6rem; }
			body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; }
	}
	/* } */

	@supports (display:grid) and (display:contents) {
		/* Use #toc over .toc to override non-@supports rules. */
		#toc {
			display: grid;
			align-content: start;
			grid-template-columns: auto 1fr;
			grid-column-gap: 1rem;
			column-gap: 1rem;
			grid-row-gap: .6rem;
			row-gap: .6rem;
		}
		#toc h2 {
			grid-column: 1 / -1;
			margin-bottom: 0;
		}
		#toc ol,
		#toc li,
		#toc a {
			display: contents;
			/* Switch <a> to subgrid when supported */
		}
		#toc span {
			margin: 0;
		}
		#toc > .toc > li > a > span {
			/* The spans of the top-level list,
			   comprising the first items of each top-level section. */
			margin-top: 1.1rem;
		}
		#toc#toc .secno { /* Ugh, need more specificity to override base.css */
			grid-column: 1;
			width: auto;
			margin-left: 0;
		}
		#toc .content {
			grid-column: 2;
			width: auto;
			margin-right: 1rem;
		}
		#toc .content:hover,
		#toc .content:focus {
			background: rgba(75%, 75%, 75%, .25);
			background: var(--a-hover-bg);
			border-bottom: 3px solid #054572;
			border-bottom: 3px solid var(--toclink-underline);
			margin-bottom: -3px;
		}
		#toc li li li .content {
			margin-left: 1rem;
		}
		#toc li li li li .content {
			margin-left: 2rem;
		}
	}


/** Index *********************************************************************/

	/* Index Lists: Layout */
	ul.index       { margin-left: 0; columns: 15em; text-indent: 1em hanging; }
	ul.index li    { margin-left: 0; list-style: none; break-inside: avoid; }
	ul.index li li { margin-left: 1em }
	ul.index dl    { margin-top: 0; }
	ul.index dt    { margin: .2em 0 .2em 20px;}
	ul.index dd    { margin: .2em 0 .2em 40px;}
	/* Index Lists: Typography */
	ul.index ul,
	ul.index dl { font-size: smaller; }
	@media not print {
		ul.index li span:not(.dfn-paneled) {
			white-space: nowrap;
			color: transparent; }
		ul.index li a:hover + span,
		ul.index li a:focus + span {
			color: #707070;
			color: var(--indexinfo-text);
		}
	}

/** Index Tables *****************************************************/
	/* See also the data table styling section, which this effectively subclasses */

	table.index {
		font-size: small;
		border-collapse: collapse;
		border-spacing: 0;
		text-align: left;
		margin: 1em 0;
	}

	table.index td,
	table.index th {
		padding: 0.4em;
	}

	table.index tr:hover td:not([rowspan]),
	table.index tr:hover th:not([rowspan]) {
		color: black;
		color: var(--indextable-hover-text);
		background: #f7f8f9;
		background: var(--indextable-hover-bg);
	}

	/* The link in the first column in the property table (formerly a TD) */
	table.index th:first-child a {
		font-weight: bold;
	}

/******************************************************************************/
/*                                    Print                                   */
/******************************************************************************/

	@media print {
		/* Pages have their own margins. */
		html {
			margin: 0;
		}
		/* Serif for print. */
		body {
			font-family: serif;
		}
	}
	@page {
		margin: 1.5cm 1.1cm;
	}



/******************************************************************************/
/*                             Overflow Control                               */
/******************************************************************************/

	.figure .caption, .sidefigure .caption, figcaption {
		/* in case figure is overlarge, limit caption to 50em */
		max-width: 50rem;
		margin-left: auto;
		margin-right: auto;
	}
	.overlarge {
		/* Magic to create good table positioning:
		   "content column" is 50ems wide at max; less on smaller screens.
		   Extra space (after ToC + content) is empty on the right.

		   1. When table < content column, centers table in column.
		   2. When content < table < available, left-aligns.
		   3. When table > available, fills available + scroll bar.
		*/
		display: grid;
		grid-template-columns: minmax(0, 50em);
	}
	.overlarge > table {
		/* limit preferred width of table */
		max-width: 50em;
		margin-left: auto;
		margin-right: auto;
	}

	@media (min-width: 55em) {
		.overlarge {
			margin-right: calc(13px + 26.5rem - 50vw);
			max-width: none;
		}
	}
	@media screen and (min-width: 78em) {
		body:not(.toc-inline) .overlarge {
			/* 30.5em body padding 50em content area */
			margin-right: calc(40em - 50vw) !important;
		}
	}
	@media screen and (min-width: 90em) {
		body:not(.toc-inline) .overlarge {
			/* 4em html margin 30.5em body padding 50em content area */
			margin-right: calc(84.5em - 100vw) !important;
		}
	}

	@media not print {
		.overlarge {
			overflow-x: auto;
			/* See Lea Verou's explanation background-attachment:
			 * http://lea.verou.me/2012/04/background-attachment-local/
			 *
			background: top left  / 4em 100% linear-gradient(to right,  #ffffff, rgba(255, 255, 255, 0)) local,
			            top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local,
			            top left  / 1em 100% linear-gradient(to right,  #c3c3c5, rgba(195, 195, 197, 0)) scroll,
			            top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll,
			            white;
			background-repeat: no-repeat;
			*/
		}
	}
</style>
<style type="text/css">
    table, th, td {
      border: 1px solid black;
      border-collapse: collapse;
      vertical-align: top;
    }
    th, td {
      border-left: none;
      border-right: none;
      padding: 0px 10px;
    }
    th {
      text-align: center;
    }

    del { background: #fcc; color: #000; text-decoration: line-through; }
    ins { background: #cfc; color: #000; }
    blockquote .highlight:not(.idl) { background: initial; margin: initial; padding: 0.5em }
    blockquote ul { background: inherit; }
    blockquote code.highlight:not(.idl) { padding: initial; }
    blockquote c-[a] { color: inherit; } /* Keyword.Declaration */
    blockquote c-[b] { color: inherit; } /* Keyword.Type */
    blockquote c-[c] { color: inherit; } /* Comment */
    blockquote c-[d] { color: inherit; } /* Comment.Multiline */
    blockquote c-[e] { color: inherit; } /* Name.Attribute */
    blockquote c-[f] { color: inherit; } /* Name.Tag */
    blockquote c-[g] { color: inherit; } /* Name.Variable */
    blockquote c-[k] { color: inherit; } /* Keyword */
    blockquote c-[l] { color: inherit; } /* Literal */
    blockquote c-[m] { color: inherit; } /* Literal.Number */
    blockquote c-[n] { color: inherit; } /* Name */
    blockquote c-[o] { color: inherit; } /* Operator */
    blockquote c-[p] { color: inherit; } /* Punctuation */
    blockquote c-[s] { color: inherit; } /* Literal.String */
    blockquote c-[t] { color: inherit; } /* Literal.String.Single */
    blockquote c-[u] { color: inherit; } /* Literal.String.Double */
    blockquote c-[cp] { color: inherit; } /* Comment.Preproc */
    blockquote c-[c1] { color: inherit; } /* Comment.Single */
    blockquote c-[cs] { color: inherit; } /* Comment.Special */
    blockquote c-[kc] { color: inherit; } /* Keyword.Constant */
    blockquote c-[kn] { color: inherit; } /* Keyword.Namespace */
    blockquote c-[kp] { color: inherit; } /* Keyword.Pseudo */
    blockquote c-[kr] { color: inherit; } /* Keyword.Reserved */
    blockquote c-[ld] { color: inherit; } /* Literal.Date */
    blockquote c-[nc] { color: inherit; } /* Name.Class */
    blockquote c-[no] { color: inherit; } /* Name.Constant */
    blockquote c-[nd] { color: inherit; } /* Name.Decorator */
    blockquote c-[ni] { color: inherit; } /* Name.Entity */
    blockquote c-[ne] { color: inherit; } /* Name.Exception */
    blockquote c-[nf] { color: inherit; } /* Name.Function */
    blockquote c-[nl] { color: inherit; } /* Name.Label */
    blockquote c-[nn] { color: inherit; } /* Name.Namespace */
    blockquote c-[py] { color: inherit; } /* Name.Property */
    blockquote c-[ow] { color: inherit; } /* Operator.Word */
    blockquote c-[mb] { color: inherit; } /* Literal.Number.Bin */
    blockquote c-[mf] { color: inherit; } /* Literal.Number.Float */
    blockquote c-[mh] { color: inherit; } /* Literal.Number.Hex */
    blockquote c-[mi] { color: inherit; } /* Literal.Number.Integer */
    blockquote c-[mo] { color: inherit; } /* Literal.Number.Oct */
    blockquote c-[sb] { color: inherit; } /* Literal.String.Backtick */
    blockquote c-[sc] { color: inherit; } /* Literal.String.Char */
    blockquote c-[sd] { color: inherit; } /* Literal.String.Doc */
    blockquote c-[se] { color: inherit; } /* Literal.String.Escape */
    blockquote c-[sh] { color: inherit; } /* Literal.String.Heredoc */
    blockquote c-[si] { color: inherit; } /* Literal.String.Interpol */
    blockquote c-[sx] { color: inherit; } /* Literal.String.Other */
    blockquote c-[sr] { color: inherit; } /* Literal.String.Regex */
    blockquote c-[ss] { color: inherit; } /* Literal.String.Symbol */
    blockquote c-[vc] { color: inherit; } /* Name.Variable.Class */
    blockquote c-[vg] { color: inherit; } /* Name.Variable.Global */
    blockquote c-[vi] { color: inherit; } /* Name.Variable.Instance */
    blockquote c-[il] { color: inherit; } /* Literal.Number.Integer.Long */
  </style>
  <meta content="Bikeshed version 89ebb6ab, updated Fri Oct 9 15:32:07 2020 -0700" name="generator">
  <link href="http://wg21.link/P1018r15" rel="canonical">
  <link href="https://isocpp.org/favicon.ico" rel="icon">
  <meta content="34449840b8a87adf9c80747248720b934b12a67b" name="document-revision">
<style>
table, th, td { border: 2px solid grey; }
</style>
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
    color: var(--a-normal-text);
    font-size: inherit;
    font-family: inherit;
}
.css::before, .property::before, .descriptor::before {
    content: "‘";
}
.css::after, .property::after, .descriptor::after {
    content: "’";
}
.property, .descriptor {
    /* Don't wrap property and descriptor names */
    white-space: nowrap;
}
.type { /* CSS value <type> */
    font-style: italic;
}
pre .property::before, pre .property::after {
    content: "";
}
[data-link-type="property"]::before,
[data-link-type="propdesc"]::before,
[data-link-type="descriptor"]::before,
[data-link-type="value"]::before,
[data-link-type="function"]::before,
[data-link-type="at-rule"]::before,
[data-link-type="selector"]::before,
[data-link-type="maybe"]::before {
    content: "‘";
}
[data-link-type="property"]::after,
[data-link-type="propdesc"]::after,
[data-link-type="descriptor"]::after,
[data-link-type="value"]::after,
[data-link-type="function"]::after,
[data-link-type="at-rule"]::after,
[data-link-type="selector"]::after,
[data-link-type="maybe"]::after {
    content: "’";
}

[data-link-type].production::before,
[data-link-type].production::after,
.prod [data-link-type]::before,
.prod [data-link-type]::after {
    content: "";
}

[data-link-type=element],
[data-link-type=element-attr] {
    font-family: Menlo, Consolas, "DejaVu Sans Mono", monospace;
    font-size: .9em;
}
[data-link-type=element]::before { content: "<" }
[data-link-type=element]::after  { content: ">" }

[data-link-type=biblio] {
    white-space: pre;
}</style>
<style>/* style-colors */

/* Any --*-text not paired with a --*-bg is assumed to have a transparent bg */
html {
    color: black;
    color: var(--text);
    background-color: white;
    background-color: var(--bg);
}
:root {
    color-scheme: light dark;

    --text: black;
    --bg: white;

    --logo-bg: #1a5e9a;
    --logo-active-bg: #c00;
    --logo-text: white;

    --tocnav-normal-text: #707070;
    --tocnav-normal-bg: var(--bg);
    --tocnav-hover-text: var(--tocnav-normal-text);
    --tocnav-hover-bg: #f8f8f8;
    --tocnav-active-text: #c00;
    --tocnav-active-bg: var(--tocnav-normal-bg);

    --tocsidebar-text: var(--text);
    --tocsidebar-bg: #f7f8f9;
    --tocsidebar-shadow: rgba(0,0,0,.1);
    --tocsidebar-heading-text: hsla(203,20%,40%,.7);

    --toclink-text: var(--text);
    --toclink-underline: #3980b5;
    --toclink-visited-text: var(--toclink-text);
    --toclink-visited-underline: #054572;

    --heading-text: #005a9c;

    --hr-text: var(--text);

    --algo-border: #def;

    --del-text: red;
    --del-bg: transparent;
    --ins-text: #080;
    --ins-bg: transparent;

    --a-normal-text: #034575;
    --a-normal-underline: #707070;
    --a-visited-text: var(--a-normal-text);
    --a-visited-underline: #bbb;
    --a-hover-bg: rgba(75%, 75%, 75%, .25);
    --a-active-text: #c00;
    --a-active-underline: #c00;

    --blockquote-border: silver;
    --blockquote-bg: transparent;
    --blockquote-text: currentcolor;

    --issue-border: #e05252;
    --issue-bg: #fbe9e9;
    --issue-text: var(--text);
    --issueheading-text: #831616;

    --example-border: #e0cb52;
    --example-bg: #fcfaee;
    --example-text: var(--text);
    --exampleheading-text: #574b0f;

    --note-border: #52e052;
    --note-bg: #e9fbe9;
    --note-text: var(--text);
    --noteheading-text: hsl(120, 70%, 30%);
    --notesummary-underline: silver;

    --assertion-border: #aaa;
    --assertion-bg: #eee;
    --assertion-text: black;

    --advisement-border: orange;
    --advisement-bg: #fec;
    --advisement-text: var(--text);
    --advisementheading-text: #b35f00;

    --warning-border: red;
    --warning-bg: hsla(40,100%,50%,0.95);
    --warning-text: var(--text);

    --def-border: #8ccbf2;
    --def-bg: #def;
    --def-text: var(--text);
    --defrow-border: #bbd7e9;

    --datacell-border: silver;

    --indexinfo-text: #707070;

    --indextable-hover-text: black;
    --indextable-hover-bg: #f7f8f9;

    --outdatedspec-bg: rgba(0, 0, 0, .5);
    --outdatedspec-text: black;
    --outdated-bg: maroon;
    --outdated-text: white;
    --outdated-shadow: red;

    --editedrec-bg: darkorange;
}</style>
<style>/* style-counters */

body {
    counter-reset: example figure issue;
}
.issue {
    counter-increment: issue;
}
.issue:not(.no-marker)::before {
    content: "Issue " counter(issue);
}

.example {
    counter-increment: example;
}
.example:not(.no-marker)::before {
    content: "Example " counter(example);
}
.invalid.example:not(.no-marker)::before,
.illegal.example:not(.no-marker)::before {
    content: "Invalid Example" counter(example);
}

figcaption {
    counter-increment: figure;
}
figcaption:not(.no-marker)::before {
    content: "Figure " counter(figure) " ";
}</style>
<style>/* style-md-lists */

/* This is a weird hack for me not yet following the commonmark spec
   regarding paragraph and lists. */
[data-md] > :first-child {
    margin-top: 0;
}
[data-md] > :last-child {
    margin-bottom: 0;
}</style>
<style>/* style-selflinks */

:root {
    --selflink-text: white;
    --selflink-bg: gray;
    --selflink-hover-text: black;
}
.heading, .issue, .note, .example, li, dt {
    position: relative;
}
a.self-link {
    position: absolute;
    top: 0;
    left: calc(-1 * (3.5rem - 26px));
    width: calc(3.5rem - 26px);
    height: 2em;
    text-align: center;
    border: none;
    transition: opacity .2s;
    opacity: .5;
}
a.self-link:hover {
    opacity: 1;
}
.heading > a.self-link {
    font-size: 83%;
}
li > a.self-link {
    left: calc(-1 * (3.5rem - 26px) - 2em);
}
dfn > a.self-link {
    top: auto;
    left: auto;
    opacity: 0;
    width: 1.5em;
    height: 1.5em;
    background: var(--selflink-bg);
    color: var(--selflink-text);
    font-style: normal;
    transition: opacity .2s, background-color .2s, color .2s;
}
dfn:hover > a.self-link {
    opacity: 1;
}
dfn > a.self-link:hover {
    color: var(--selflink-hover-text);
}

a.self-link::before            { content: "¶"; }
.heading > a.self-link::before { content: "§"; }
dfn > a.self-link::before      { content: "#"; }
</style>
<style>/* style-syntax-highlighting */

code.highlight { padding: .1em; border-radius: .3em; }
pre.highlight, pre > code.highlight { display: block; padding: 1em; margin: .5em 0; overflow: auto; border-radius: 0; }

.highlight:not(.idl) { background: #fdf6e3; }
c-[a] { color: #990055 } /* Keyword.Declaration */
c-[b] { color: #990055 } /* Keyword.Type */
c-[c] { color: #708090 } /* Comment */
c-[d] { color: #708090 } /* Comment.Multiline */
c-[e] { color: #0077aa } /* Name.Attribute */
c-[f] { color: #669900 } /* Name.Tag */
c-[g] { color: #222222 } /* Name.Variable */
c-[k] { color: #990055 } /* Keyword */
c-[l] { color: #000000 } /* Literal */
c-[m] { color: #000000 } /* Literal.Number */
c-[n] { color: #0077aa } /* Name */
c-[o] { color: #999999 } /* Operator */
c-[p] { color: #999999 } /* Punctuation */
c-[s] { color: #a67f59 } /* Literal.String */
c-[t] { color: #a67f59 } /* Literal.String.Single */
c-[u] { color: #a67f59 } /* Literal.String.Double */
c-[cp] { color: #708090 } /* Comment.Preproc */
c-[c1] { color: #708090 } /* Comment.Single */
c-[cs] { color: #708090 } /* Comment.Special */
c-[kc] { color: #990055 } /* Keyword.Constant */
c-[kn] { color: #990055 } /* Keyword.Namespace */
c-[kp] { color: #990055 } /* Keyword.Pseudo */
c-[kr] { color: #990055 } /* Keyword.Reserved */
c-[ld] { color: #000000 } /* Literal.Date */
c-[nc] { color: #0077aa } /* Name.Class */
c-[no] { color: #0077aa } /* Name.Constant */
c-[nd] { color: #0077aa } /* Name.Decorator */
c-[ni] { color: #0077aa } /* Name.Entity */
c-[ne] { color: #0077aa } /* Name.Exception */
c-[nf] { color: #0077aa } /* Name.Function */
c-[nl] { color: #0077aa } /* Name.Label */
c-[nn] { color: #0077aa } /* Name.Namespace */
c-[py] { color: #0077aa } /* Name.Property */
c-[ow] { color: #999999 } /* Operator.Word */
c-[mb] { color: #000000 } /* Literal.Number.Bin */
c-[mf] { color: #000000 } /* Literal.Number.Float */
c-[mh] { color: #000000 } /* Literal.Number.Hex */
c-[mi] { color: #000000 } /* Literal.Number.Integer */
c-[mo] { color: #000000 } /* Literal.Number.Oct */
c-[sb] { color: #a67f59 } /* Literal.String.Backtick */
c-[sc] { color: #a67f59 } /* Literal.String.Char */
c-[sd] { color: #a67f59 } /* Literal.String.Doc */
c-[se] { color: #a67f59 } /* Literal.String.Escape */
c-[sh] { color: #a67f59 } /* Literal.String.Heredoc */
c-[si] { color: #a67f59 } /* Literal.String.Interpol */
c-[sx] { color: #a67f59 } /* Literal.String.Other */
c-[sr] { color: #a67f59 } /* Literal.String.Regex */
c-[ss] { color: #a67f59 } /* Literal.String.Symbol */
c-[vc] { color: #0077aa } /* Name.Variable.Class */
c-[vg] { color: #0077aa } /* Name.Variable.Global */
c-[vi] { color: #0077aa } /* Name.Variable.Instance */
c-[il] { color: #000000 } /* Literal.Number.Integer.Long */
</style>
<style>/* style-darkmode */

@media (prefers-color-scheme: dark) {
    :root {
        --text: #ddd;
        --bg: black;

        --logo-bg: #1a5e9a;
        --logo-active-bg: #c00;
        --logo-text: white;

        --tocnav-normal-text: #999;
        --tocnav-normal-bg: var(--bg);
        --tocnav-hover-text: var(--tocnav-normal-text);
        --tocnav-hover-bg: #080808;
        --tocnav-active-text: #f44;
        --tocnav-active-bg: var(--tocnav-normal-bg);

        --tocsidebar-text: var(--text);
        --tocsidebar-bg: #080808;
        --tocsidebar-shadow: rgba(255,255,255,.1);
        --tocsidebar-heading-text: hsla(203,20%,40%,.7);

        --toclink-text: var(--text);
        --toclink-underline: #6af;
        --toclink-visited-text: var(--toclink-text);
        --toclink-visited-underline: #054572;

        --heading-text: #8af;

        --hr-text: var(--text);

        --algo-border: #456;

        --del-text: #f44;
        --del-bg: transparent;
        --ins-text: #4a4;
        --ins-bg: transparent;

        --a-normal-text: #6af;
        --a-normal-underline: #555;
        --a-visited-text: var(--a-normal-text);
        --a-visited-underline: var(--a-normal-underline);
        --a-hover-bg: rgba(25%, 25%, 25%, .2);
        --a-active-text: #f44;
        --a-active-underline: var(--a-active-text);

        --borderedblock-bg: rgba(255, 255, 255, .05);

        --blockquote-border: silver;
        --blockquote-bg: var(--borderedblock-bg);
        --blockquote-text: currentcolor;

        --issue-border: #e05252;
        --issue-bg: var(--borderedblock-bg);
        --issue-text: var(--text);
        --issueheading-text: hsl(0deg, 70%, 70%);

        --example-border: hsl(50deg, 90%, 60%);
        --example-bg: var(--borderedblock-bg);
        --example-text: var(--text);
        --exampleheading-text: hsl(50deg, 70%, 70%);

        --note-border: hsl(120deg, 100%, 35%);
        --note-bg: var(--borderedblock-bg);
        --note-text: var(--text);
        --noteheading-text: hsl(120, 70%, 70%);
        --notesummary-underline: silver;

        --assertion-border: #444;
        --assertion-bg: var(--borderedblock-bg);
        --assertion-text: var(--text);

        --advisement-border: orange;
        --advisement-bg: #222218;
        --advisement-text: var(--text);
        --advisementheading-text: #f84;

        --warning-border: red;
        --warning-bg: hsla(40,100%,20%,0.95);
        --warning-text: var(--text);

        --def-border: #8ccbf2;
        --def-bg: #080818;
        --def-text: var(--text);
        --defrow-border: #136;

        --datacell-border: silver;

        --indexinfo-text: #aaa;

        --indextable-hover-text: var(--text);
        --indextable-hover-bg: #181818;

        --outdatedspec-bg: rgba(255, 255, 255, .5);
        --outdatedspec-text: black;
        --outdated-bg: maroon;
        --outdated-text: white;
        --outdated-shadow: red;

        --editedrec-bg: darkorange;
    }
    /* In case a transparent-bg image doesn't expect to be on a dark bg,
       which is quite common in practice... */
    img { background: white; }
}
@media (prefers-color-scheme: dark) {
    :root {
        --selflink-text: black;
        --selflink-bg: silver;
        --selflink-hover-text: white;
    }
}

@media (prefers-color-scheme: dark) {
    .highlight:not(.idl) { background: rgba(255, 255, 255, .05); }

    c-[a] { color: #d33682 } /* Keyword.Declaration */
    c-[b] { color: #d33682 } /* Keyword.Type */
    c-[c] { color: #2aa198 } /* Comment */
    c-[d] { color: #2aa198 } /* Comment.Multiline */
    c-[e] { color: #268bd2 } /* Name.Attribute */
    c-[f] { color: #b58900 } /* Name.Tag */
    c-[g] { color: #cb4b16 } /* Name.Variable */
    c-[k] { color: #d33682 } /* Keyword */
    c-[l] { color: #657b83 } /* Literal */
    c-[m] { color: #657b83 } /* Literal.Number */
    c-[n] { color: #268bd2 } /* Name */
    c-[o] { color: #657b83 } /* Operator */
    c-[p] { color: #657b83 } /* Punctuation */
    c-[s] { color: #6c71c4 } /* Literal.String */
    c-[t] { color: #6c71c4 } /* Literal.String.Single */
    c-[u] { color: #6c71c4 } /* Literal.String.Double */
    c-[ch] { color: #2aa198 } /* Comment.Hashbang */
    c-[cp] { color: #2aa198 } /* Comment.Preproc */
    c-[cpf] { color: #2aa198 } /* Comment.PreprocFile */
    c-[c1] { color: #2aa198 } /* Comment.Single */
    c-[cs] { color: #2aa198 } /* Comment.Special */
    c-[kc] { color: #d33682 } /* Keyword.Constant */
    c-[kn] { color: #d33682 } /* Keyword.Namespace */
    c-[kp] { color: #d33682 } /* Keyword.Pseudo */
    c-[kr] { color: #d33682 } /* Keyword.Reserved */
    c-[ld] { color: #657b83 } /* Literal.Date */
    c-[nc] { color: #268bd2 } /* Name.Class */
    c-[no] { color: #268bd2 } /* Name.Constant */
    c-[nd] { color: #268bd2 } /* Name.Decorator */
    c-[ni] { color: #268bd2 } /* Name.Entity */
    c-[ne] { color: #268bd2 } /* Name.Exception */
    c-[nf] { color: #268bd2 } /* Name.Function */
    c-[nl] { color: #268bd2 } /* Name.Label */
    c-[nn] { color: #268bd2 } /* Name.Namespace */
    c-[py] { color: #268bd2 } /* Name.Property */
    c-[ow] { color: #657b83 } /* Operator.Word */
    c-[mb] { color: #657b83 } /* Literal.Number.Bin */
    c-[mf] { color: #657b83 } /* Literal.Number.Float */
    c-[mh] { color: #657b83 } /* Literal.Number.Hex */
    c-[mi] { color: #657b83 } /* Literal.Number.Integer */
    c-[mo] { color: #657b83 } /* Literal.Number.Oct */
    c-[sa] { color: #6c71c4 } /* Literal.String.Affix */
    c-[sb] { color: #6c71c4 } /* Literal.String.Backtick */
    c-[sc] { color: #6c71c4 } /* Literal.String.Char */
    c-[dl] { color: #6c71c4 } /* Literal.String.Delimiter */
    c-[sd] { color: #6c71c4 } /* Literal.String.Doc */
    c-[se] { color: #6c71c4 } /* Literal.String.Escape */
    c-[sh] { color: #6c71c4 } /* Literal.String.Heredoc */
    c-[si] { color: #6c71c4 } /* Literal.String.Interpol */
    c-[sx] { color: #6c71c4 } /* Literal.String.Other */
    c-[sr] { color: #6c71c4 } /* Literal.String.Regex */
    c-[ss] { color: #6c71c4 } /* Literal.String.Symbol */
    c-[fm] { color: #268bd2 } /* Name.Function.Magic */
    c-[vc] { color: #cb4b16 } /* Name.Variable.Class */
    c-[vg] { color: #cb4b16 } /* Name.Variable.Global */
    c-[vi] { color: #cb4b16 } /* Name.Variable.Instance */
    c-[vm] { color: #cb4b16 } /* Name.Variable.Magic */
    c-[il] { color: #657b83 } /* Literal.Number.Integer.Long */
}
</style>
 <body class="h-entry">
  <div class="head">
   <p data-fill-with="logo"></p>
   <h1 class="p-name no-ref" id="title">P1018R15<br>C++ Language Evolution status 🦠 pandemic edition 🦠 2022/01–2022/02</h1>
   <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Published Proposal, <time class="dt-updated" datetime="2022-02-15">2022-02-15</time></span></h2>
   <div data-fill-with="spec-metadata">
    <dl>
     <dt>This version:
     <dd><a class="u-url" href="http://wg21.link/P1018r15">http://wg21.link/P1018r15</a>
     <dt class="editor">Author:
     <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:cxx@jfbastien.com">JF Bastien</a> (<span class="p-org org">Woven Planet</span>)
     <dt>Audience:
     <dd>WG21, EWG
     <dt>Project:
     <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++
     <dt>Source:
     <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r15.bs">github.com/jfbastien/papers/blob/master/source/P1018r15.bs</a>
    </dl>
   </div>
   <div data-fill-with="warning"></div>
   <hr title="Separator for header">
  </div>
  <div class="p-summary" data-fill-with="abstract">
   <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2>
   <p>This paper is a collection of items that the C++ Language Evolution group has worked on in the latest meeting, their status, and plans for the future.</p>
  </div>
  <nav data-fill-with="table-of-contents" id="toc">
   <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2>
   <ol class="toc" role="directory">
    <li><a href="#summary"><span class="secno">1</span> <span class="content">Executive summary</span></a>
    <li><a href="#note"><span class="secno">2</span> <span class="content">Papers of note</span></a>
    <li><a href="#tentative"><span class="secno">3</span> <span class="content">Tentatively ready papers</span></a>
    <li><a href="#issue-pro"><span class="secno">4</span> <span class="content">Issue Processing</span></a>
    <li>
     <a href="#polls"><span class="secno">5</span> <span class="content">Polls</span></a>
     <ol class="toc">
      <li><a href="#P2280r3"><span class="secno">5.1</span> <span class="content">P2280r3 Using unknown references in constant expressions</span></a>
      <li><a href="#P2468r1"><span class="secno">5.2</span> <span class="content">P2468r1 The Equality Operator You Are Looking For</span></a>
      <li><a href="#P2327r1"><span class="secno">5.3</span> <span class="content">P2327r1 De-deprecating <code class="highlight"><c- k>volatile</c-></code> compound operations</span></a>
      <li><a href="#P2266r2"><span class="secno">5.4</span> <span class="content">P2266r2 Simpler implicit move</span></a>
      <li><a href="#P1467r8"><span class="secno">5.5</span> <span class="content">P1467r8 Extended floating-point types and standard names</span></a>
      <li><a href="#P2350r2"><span class="secno">5.6</span> <span class="content">P2350r2 <code class="highlight"><c- k>constexpr</c-> <c- k>class</c-></code></span></a>
      <li><a href="#P1169r3"><span class="secno">5.7</span> <span class="content">P1169r3 <code class="highlight"><c- k>static</c-> <c- k>operator</c-><c- p>()</c-></code></span></a>
      <li><a href="#P1774r5"><span class="secno">5.8</span> <span class="content">P1774r5 Portable assumptions</span></a>
      <li><a href="#P1494r2"><span class="secno">5.9</span> <span class="content">P1494r2 Partial program correctness</span></a>
      <li><a href="#P2448r0"><span class="secno">5.10</span> <span class="content">P2448r0 Relaxing some <code class="highlight"><c- k>constexpr</c-></code> restrictions</span></a>
      <li><a href="#P2437r0"><span class="secno">5.11</span> <span class="content">P2437r0 Support for <code class="highlight"><c- cp>#warning</c-></code></span></a>
      <li><a href="#P2324r1"><span class="secno">5.12</span> <span class="content">P2324r1 Labels at the end of compound statements (C compatibility)</span></a>
      <li><a href="#P2071r1"><span class="secno">5.13</span> <span class="content">P2071r1 Named universal character escapes</span></a>
      <li><a href="#P2295r5"><span class="secno">5.14</span> <span class="content">P2295r5 Support for UTF-8 as a portable source file encoding</span></a>
      <li><a href="#P2290r2"><span class="secno">5.15</span> <span class="content">P2290r2 Delimited escape sequences</span></a>
      <li><a href="#P2362r3"><span class="secno">5.16</span> <span class="content">P2362r3 Remove non-encodable wide character literals and multicharacter wide character literals</span></a>
      <li><a href="#P2348r2"><span class="secno">5.17</span> <span class="content">P2348r2 Whitespaces Wording Revamp</span></a>
     </ol>
    <li><a href="#process"><span class="secno">6</span> <span class="content">Polling Process</span></a>
    <li><a href="#telecons"><span class="secno">7</span> <span class="content">Teleconferences</span></a>
    <li><a href="#issues"><span class="secno">8</span> <span class="content">Remaining Open Issues</span></a>
    <li><a href="#future"><span class="secno">9</span> <span class="content">Near-future EWG plans</span></a>
    <li>
     <a href="#references"><span class="secno"></span> <span class="content">References</span></a>
     <ol class="toc">
      <li><a href="#informative"><span class="secno"></span> <span class="content">Informative References</span></a>
     </ol>
   </ol>
  </nav>
  <main>
   <h2 class="heading settled" data-level="1" id="summary"><span class="secno">1. </span><span class="content">Executive summary</span><a class="self-link" href="#summary"></a></h2>
   <p>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 <a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a>. We focus on providing non-final guidance, and will use electronic straw polls as detailed in <a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a> to move papers and issues forward in a asynchronous manner.</p>
   <p>Our main achievements have been:</p>
   <ul>
    <li data-md>
     <p><strong>Issue processing</strong>: most of the 50 language evolution issues have proposed resolutions, and a large number of them have been voted on through electronic polling.</p>
    <li data-md>
     <p><strong>C++23</strong>: we’ve worked on papers for C++23 and later. As of January 2022, EWG is not considering new papers for C++23.</p>
    <li data-md>
     <p><strong>Incubation</strong>: we’ve acted as EWG-I and "incubated" some early papers by providing early feedback to authors.</p>
   </ul>
   <p>This paper outlines:</p>
   <ul>
    <li data-md>
     <p>The work achieved in <a href="#telecons">§ 7 Teleconferences</a>;</p>
    <li data-md>
     <p>Lists the <a href="#polls">§ 5 Polls</a> results for the Early 2022 polling period and explain the <a href="#process">§ 6 Polling Process</a> (see <a data-link-type="biblio" href="#biblio-p1018r9">[P1018r9]</a> for the results of the February 2021 polling period, <a data-link-type="biblio" href="#biblio-p1018r11">[P1018r11]</a> for the results of the May 2021 polling period, and <a data-link-type="biblio" href="#biblio-p1018r13">[P1018r13]</a> for the results of the August polling period);</p>
    <li data-md>
     <p>Lists the remaining outstanding issues in <a href="#issues">§ 8 Remaining Open Issues</a>, some are still open while others are waiting for polling;</p>
    <li data-md>
     <p><a href="#future">§ 9 Near-future EWG plans</a>.</p>
   </ul>
   <h2 class="heading settled" data-level="2" id="note"><span class="secno">2. </span><span class="content">Papers of note</span><a class="self-link" href="#note"></a></h2>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1000r4">[P1000R4]</a> C++ IS schedule</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p0592r4">[P0592R4]</a> To boldly suggest an overall plan for C++23</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1999r0">[P1999R0]</a> Process: double-check evolutionary material via a Tentatively Ready status</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a> Electronic Straw Polls</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a> Evolving C++ Remotely</p>
   </ul>
   <h2 class="heading settled" data-level="3" id="tentative"><span class="secno">3. </span><span class="content">Tentatively ready papers</span><a class="self-link" href="#tentative"></a></h2>
   <p>Following our process in <a data-link-type="biblio" href="#biblio-p1999r0">[P1999R0]</a>, 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 <a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a>.</p>
   <p>You can follow the lists of papers on GitHub:</p>
   <ul>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/labels/TentativelyReady">tentatively ready papers</a>,</p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/labels/EWG-vote-on-me">EWG vote on me papers</a>.</p>
   </ul>
   <h2 class="heading settled" data-level="4" id="issue-pro"><span class="secno">4. </span><span class="content">Issue Processing</span><a class="self-link" href="#issue-pro"></a></h2>
   <p>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.</p>
   <p><a href="#issues">§ 8 Remaining Open Issues</a> contains a list of issues which aren’t being voted on in this polling period.</p>
   <h2 class="heading settled" data-level="5" id="polls"><span class="secno">5. </span><span class="content">Polls</span><a class="self-link" href="#polls"></a></h2>
   <p>The polls which EWG took in the January 2022 polling period, and the poll results, are:</p>
   <h3 class="heading settled" data-level="5.1" id="P2280r3"><span class="secno">5.1. </span><span class="content">P2280r3 Using unknown references in constant expressions</span><a class="self-link" href="#P2280r3"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2280r3">[P2280r3]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/973">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> <code class="highlight"><c- k>constexpr</c-></code> usage of unknown references doesn’t work, that’s surprising, make it work as expected.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2280r3 "Using unknown references in constant expressions" to Core for C++23. Treat it as a Defect Report.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>20
      <td>12
      <td>2
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 11
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> It is pretty hard to explain to a non-language-lawyer why asking for the size of a by-reference <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>array</c-></code> parameter is non-constant but doing so for a by-value <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>array</c-></code> parameter is constant; and references <code class="highlight"><c- o>+</c-></code> this seems like a good place to draw the line. Ship it. 
    <li><strong>Strong Favor:</strong> I believe this is useful and relatively easily implementable. 
    <li><strong>Favor:</strong> 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-<code class="highlight"><c- k>static</c-></code> <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>array</c-><c- o>::</c-><c- n>size</c-></code> illustrates.  As a matter of convenience, then, if not of coherence, it is an improvement. 
   </ul>
   <h3 class="heading settled" data-level="5.2" id="P2468r1"><span class="secno">5.2. </span><span class="content">P2468r1 The Equality Operator You Are Looking For</span><a class="self-link" href="#P2468r1"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2468r1">[P2468r1]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1127">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Make rewriting equality in expressions less of a breaking change.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2468r1 "The Equality Operator You Are Looking For" to Core for C++23. Treat it as a Defect Report against C++20.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>19
      <td>14
      <td>1
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 11
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> Given that implementations are doing something along those lines to avoid breaking existing code already - ship it. 
   </ul>
   <h3 class="heading settled" data-level="5.3" id="P2327r1"><span class="secno">5.3. </span><span class="content">P2327r1 De-deprecating <code class="highlight"><c- k>volatile</c-></code> compound operations</span><a class="self-link" href="#P2327r1"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2327r1">[P2327r1]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1023">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> C++20 deprecated many uses for <code class="highlight"><c- k>volatile</c-></code>. This paper un-deprecates the bitwise compound operators (<code class="highlight"><c- o>|=</c-></code>, <code class="highlight"><c- o>&amp;=</c-></code>,and <code class="highlight"><c- o>^=</c-></code>) on <code class="highlight"><c- k>volatile</c-></code> left operands.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2327r1 "De-deprecating <code class="highlight"><c- k>volatile</c-></code> compound operations" to Core for C++23. Treat it as a Defect Report against C++20.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>13
      <td>19
      <td>1
      <td>0
      <td>2
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 10
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> We want to increase the usage of C++ for embedded code; <em>not</em> doing this would alienate some users, and add more support for a "C++ is bad for embedded" position 
    <li><strong>Favor:</strong> 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... 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Strong Against:</strong> To me, the semantic of the compound assignment is not well defined in the standard. It says: <code class="highlight"><c- n>E1</c-> <c- n>op</c-><c- o>=</c-> <c- n>E2</c-></code> is equivalent to <code class="highlight"><c- n>E1</c-> <c- o>=</c-> <c- n>E1</c-> <c- n>op</c-> <c- n>E2</c-></code> except that <code class="highlight"><c- n>E1</c-></code> 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). 
    <li><strong>Strong Against:</strong> 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. 
   </ul>
   <h3 class="heading settled" data-level="5.4" id="P2266r2"><span class="secno">5.4. </span><span class="content">P2266r2 Simpler implicit move</span><a class="self-link" href="#P2266r2"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2266r2">[P2266r2]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/968">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> In C++20, <code class="highlight"><c- k>return</c-></code> statements can <em>implicitly move</em> from local variables of <em>rvalue</em> reference type; but a defect in the wording means that <em>implicit move</em> 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 <em>id-expression</em> is always an <em>xvalue</em>.</p>
    <li data-md>
     <p><strong>Note:</strong> r1 of this paper went through electronic polling, received mixed feedback based on new information, see <a data-link-type="biblio" href="#biblio-p1018r13">[P1018r13]</a> for the poll comments. It was updated to r2, re-discussed in the <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-10-07">2021-10-07 teleconference</a> to address the new information, and is now being re-polled.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2266r2 "Simpler implicit move" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>15
      <td>13
      <td>1
      <td>2
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 14
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> "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 <code class="highlight"><c- o>==</c-></code>, 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." 
    <li><strong>Against:</strong> 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. 
    <li><strong>Against:</strong> 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). 
   </ul>
   <h3 class="heading settled" data-level="5.5" id="P1467r8"><span class="secno">5.5. </span><span class="content">P1467r8 Extended floating-point types and standard names</span><a class="self-link" href="#P1467r8"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1467r8">[P1467r8]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/227">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> In addition to the three standard floating-point types, <code class="highlight"><c- b>float</c-></code>, <code class="highlight"><c- b>double</c-></code>, and <code class="highlight"><c- b>long</c-> <c- b>double</c-></code>, implementations may define any number of <em>extended floating-point types</em>, 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.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> 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.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>11
      <td>15
      <td>2
      <td>1
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 16
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> This will allow C++ applications to take advantage of existing and yet-to-come floating-point hardware in a standard way. 
    <li><strong>Against:</strong> The lack of implementation experience of the proposed overload resolution rules is concerning. 
   </ul>
   <h3 class="heading settled" data-level="5.6" id="P2350r2"><span class="secno">5.6. </span><span class="content">P2350r2 <code class="highlight"><c- k>constexpr</c-> <c- k>class</c-></code></span><a class="self-link" href="#P2350r2"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2350r2">[P2350r2]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1028">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Allow <code class="highlight"><c- k>constexpr</c-></code> in the <code class="highlight"><c- k>class</c-></code>-head, declaring that all member functions, including special member functions, in this <code class="highlight"><c- k>class</c-></code> are implicitly <code class="highlight"><c- k>constexpr</c-></code>.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2350r2 "<code class="highlight"><c- k>constexpr</c-> <c- k>class</c-></code>" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>12
      <td>12
      <td>9
      <td>5
      <td>2
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 5
   </table>
    <br><strong>Poll outcome:</strong>❌ no consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Favor:</strong> Useful to avoid a lot of boilerplate in modern code bases. 
    <li><strong>Against:</strong> 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. 
    <li><strong>Against:</strong> Allowing <code class="highlight"><c- k>struct</c-> <c- n>X</c-> <c- k>constexpr</c-> <c- p>...</c-></code> but not <code class="highlight"><c- k>struct</c-> <c- n>X</c-> <c- k>consteval</c-> <c- p>...</c-></code> is suspect. 
    <li><strong>Against:</strong> 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. 
    <li><strong>Strong Against:</strong> 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. 
    <li><strong>Strong Against:</strong> 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. 
   </ul>
   <h3 class="heading settled" data-level="5.7" id="P1169r3"><span class="secno">5.7. </span><span class="content">P1169r3 <code class="highlight"><c- k>static</c-> <c- k>operator</c-><c- p>()</c-></code></span><a class="self-link" href="#P1169r3"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1169r3">[P1169r3]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1022">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Allow declaring <code class="highlight"><c- k>operator</c-><c- p>()</c-></code> as <code class="highlight"><c- k>static</c-></code>, as well as making lambdas <code class="highlight"><c- k>static</c-></code>.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P1169r3 "<code class="highlight"><c- k>static</c-> <c- k>operator</c-><c- p>()</c-></code>" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>16
      <td>16
      <td>3
      <td>1
      <td>1
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 8
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> I have thought that this was possible many times only to find out (again) that it is not. Finally it will be. 
    <li><strong>Favor:</strong> Sheds needless overhead. 
    <li><strong>Favor:</strong> Seems generally useful. The restriction against static here seems arbitrary. 
    <li><strong>Against:</strong> It’s a patch 
    <li><strong>Strong Against:</strong> This adds a lot of subtlety for very little gain in practice. 
   </ul>
   <h3 class="heading settled" data-level="5.8" id="P1774r5"><span class="secno">5.8. </span><span class="content">P1774r5 Portable assumptions</span><a class="self-link" href="#P1774r5"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1774r5">[P1774r5]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/529">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Add the <code class="highlight"><c- p>[[</c-><c- n>assume</c-><c- p>(</c-><em><c- n>expression</c-></em><c- p>)]]</c-></code> 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.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P1774r5 "Portable assumptions" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>14
      <td>17
      <td>3
      <td>4
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 7
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Strong Favor:</strong> Useful tool for code optimization, impressive usage examples for the standard library 
    <li><strong>Against:</strong> 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. 
    <li><strong>Against:</strong> 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. 
    <li><strong>Against:</strong> high potential for overuse leading to serious errors 
   </ul>
   <h3 class="heading settled" data-level="5.9" id="P1494r2"><span class="secno">5.9. </span><span class="content">P1494r2 Partial program correctness</span><a class="self-link" href="#P1494r2"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1494r2">[P1494r2]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/376">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Adds <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>observable</c-><c- p>()</c-></code> (<em>name pending LEWG review</em>) which establishes an observable checkpoint, inhibiting "time travel" of Undefined Behavior past the checkpoint.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P1494r2 "Partial program correctness" to Core for C++23, pending LEWG approval.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>10
      <td>7
      <td>3
      <td>4
      <td>1
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 20
   </table>
    <br><strong>Poll outcome:</strong>❌ no consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> This proposal seems pretty wild, but I’m curious to see where it goes. 
    <li><strong>Favor:</strong> This seems like a useful - if expert-only - feature. 
    <li><strong>Favor:</strong> Useful,  although I’m sure it will get misunderstood and misused. 
    <li><strong>Neutral:</strong> 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. 
    <li><strong>Against:</strong> 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. 
    <li><strong>Against:</strong> This seems to lack real implementation experience. 
    <li><strong>Strong Against:</strong> 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 <em>technically</em> 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? 
   </ul>
   <h3 class="heading settled" data-level="5.10" id="P2448r0"><span class="secno">5.10. </span><span class="content">P2448r0 Relaxing some <code class="highlight"><c- k>constexpr</c-></code> restrictions</span><a class="self-link" href="#P2448r0"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2448r0">[P2448r0]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1119">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Remove two rules about <code class="highlight"><c- k>constexpr</c-></code> that make code ill-formed or ill-formed (no diagnostic required) when functions or function templates are marked <code class="highlight"><c- k>constexpr</c-></code> that might never evaluate to a constant expression.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2448r0 "Relaxing some <code class="highlight"><c- k>constexpr</c-></code> restrictions" to Core for C++23. Treat it as a Defect Report.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>20
      <td>12
      <td>1
      <td>2
      <td>1
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 9
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
    <li><strong>Favor:</strong> This improves the usability of constexpr and the language as a whole.  Implementation is trivial. 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Neutral:</strong> 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. 
    <li><strong>Against:</strong> 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. 
    <li><strong>Strong Against:</strong> 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? 
   </ul>
   <h3 class="heading settled" data-level="5.11" id="P2437r0"><span class="secno">5.11. </span><span class="content">P2437r0 Support for <code class="highlight"><c- cp>#warning</c-></code></span><a class="self-link" href="#P2437r0"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2437r0">[P2437r0]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1103">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> C23 is adding support for <code class="highlight"><c- cp>#warning</c-></code> as a complement to <code class="highlight"><c- cp>#error</c-></code>. Add it to C++23 as well.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2437r0 "Support for <code class="highlight"><c- cp>#warning</c-></code>" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>26
      <td>11
      <td>2
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 6
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Favor:</strong> Simple, straight forward, useful, retains compatibility with C, standardizes existing practice. Ship it. 
   </ul>
   <h3 class="heading settled" data-level="5.12" id="P2324r1"><span class="secno">5.12. </span><span class="content">P2324r1 Labels at the end of compound statements (C compatibility)</span><a class="self-link" href="#P2324r1"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2324r1">[P2324r1]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1006">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Labels are allowed at the end of compound statements in C, but not C++. For example <code class="highlight"><c- b>int</c-> <c- nf>main</c-><c- p>()</c-> <c- p>{</c-> <c- nl>invalid_cpp</c-><c- p>:</c-> <c- p>}</c-></code>. This paper rectifies this minor divergence.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2324r1 "Labels at the end of compound statements (C compatibility)" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>20
      <td>11
      <td>3
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 11
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Favor:</strong> Improves compatibility with C23, removes an IMHO unnecessary restriction. 
   </ul>
   <h3 class="heading settled" data-level="5.13" id="P2071r1"><span class="secno">5.13. </span><span class="content">P2071r1 Named universal character escapes</span><a class="self-link" href="#P2071r1"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2071r1">[P2071r1]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/798">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> C++ programmers have been able to portably use characters outside of the basic source character set in character and string literals using <em>universal-character-names</em> since C++ was standardized. For example the following UTF-8 string literal: <code class="highlight">u8<c- s>"</c-><c- se>\u0100\u0300</c-><c- s>"</c-></code>. 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 <code class="highlight">u8<c- s>"\N{LATIN CAPITAL LETTER A WITH MACRON}\N{COMBINING GRAVE ACCENT}"</c-></code>.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2071r1 "Named universal character escapes" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>12
      <td>14
      <td>3
      <td>3
      <td>1
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 12
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> Avoid specifying magic values in code. 
    <li><strong>Favor:</strong> One would hope that many <code class="highlight">\<c- n>u</c-></code> 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. 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Neutral:</strong> 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. 
    <li><strong>Against:</strong> Concern about the compiler space overhead. 
    <li><strong>Strong Against:</strong> 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. 
   </ul>
   <h3 class="heading settled" data-level="5.14" id="P2295r5"><span class="secno">5.14. </span><span class="content">P2295r5 Support for UTF-8 as a portable source file encoding</span><a class="self-link" href="#P2295r5"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2295r5">[P2295r5]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/985">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> 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.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2295r5 "Support for UTF-8 as a portable source file encoding" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>20
      <td>9
      <td>3
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 13
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
   </ul>
   <h3 class="heading settled" data-level="5.15" id="P2290r2"><span class="secno">5.15. </span><span class="content">P2290r2 Delimited escape sequences</span><a class="self-link" href="#P2290r2"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2290r2">[P2290r2]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/983">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Add an additional, clearly delimited syntax for octal, hexadecimal and universal character name escape sequences. The new syntaxes <code class="highlight">\<c- n>u</c-><c- p>{}</c-></code>, <code class="highlight">\<c- n>o</c-><c- p>{}</c-></code>, <code class="highlight">\<c- n>x</c-><c- p>{}</c-></code> are usable in places where <code class="highlight">\<c- n>u</c-></code>, <code class="highlight">\<c- n>x</c-></code>, <code class="highlight">\<c- n>nnn</c-></code> currently are.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2290r2 "Delimited escape sequences" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>9
      <td>15
      <td>3
      <td>1
      <td>1
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 16
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> The current alternative (write every character as a 3-digit octal number) is user-hostile.  This is a welcome addition. 
    <li><strong>Neutral:</strong> It’s not clear that having yet another syntax is preferable to having our current less ergonomic forms, especially given that <code class="highlight">\<c- n>U00012345</c-></code> is not much longer than <code class="highlight">\<c- n>u</c-><c- p>{</c-><c- mi>12345</c-><c- p>}</c-></code> and <code class="highlight">\<c- n>u1234</c-></code> isn’t greedy and is shorter than almost all <code class="highlight">\<c- n>u</c-><c- p>{...}</c-></code> values.  The greedy <code class="highlight">\<c- n>x</c-></code> 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. 
    <li><strong>Against:</strong> <code class="highlight">\<c- n>u</c-><c- p>{...}</c-></code> saves characters and no longer asks users to learn both <code class="highlight">\<c- n>u</c-></code> and <code class="highlight">\<c- n>U</c-></code>, so people will use them. The other two are unlikely to be popular. <code class="highlight"><c- p>{</c-><c- mh>0x2c</c-><c- p>,</c-> <c- mh>0x10</c-><c- p>,</c-> <c- mi>0</c-><c- p>}</c-></code> is about the same length and more straightforward comparing to <code class="highlight"><c- s>"\x{2c}\x{10}"</c-></code>. For the beneficial parts, this paper seems unnecessary if we further extend on top of P2071 <code class="highlight">\<c- n>N</c-><c- p>{</c-><c- n>U</c-><c- o>+</c-><c- mi>10034</c-><c- p>}</c-></code>. 
    <li><strong>Strong Against:</strong> Unnecessary 
   </ul>
   <h3 class="heading settled" data-level="5.16" id="P2362r3"><span class="secno">5.16. </span><span class="content">P2362r3 Remove non-encodable wide character literals and multicharacter wide character literals</span><a class="self-link" href="#P2362r3"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2362r3">[P2362r3]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1036">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> C++ currently permits writing a wide character literal with multiple characters or characters that cannot fit into a single <code class="highlight"><c- b>wchar_t</c-></code> codeunit. This paper makes these literals ill-formed.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2362r3 "Remove non-encodable wide character literals and multicharacter wide character literals" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>14
      <td>12
      <td>2
      <td>1
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 16
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
     h 
    <li><strong>Favor:</strong> 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. 
    <li><strong>Favor:</strong> It’s hard to imagine that any use of these sequences is not a bug. 
    <li><strong>Against:</strong> I don’t know what this paper <strong>enables,</strong> and the issue still looks like a QoI to me. 
   </ul>
   <h3 class="heading settled" data-level="5.17" id="P2348r2"><span class="secno">5.17. </span><span class="content">P2348r2 Whitespaces Wording Revamp</span><a class="self-link" href="#P2348r2"></a></h3>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2348r2">[P2348r2]</a></p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/issues/1027">GitHub issue</a></p>
    <li data-md>
     <p><strong>Highlight:</strong> Clarify what constitutes a new-line and a whitespace, using Unicode terminology.</p>
    <li data-md>
     <p><strong>🗳  Poll:</strong> Forward P2348r2 "Whitespaces Wording Revamp" to Core for C++23.</p>
   </ul>
   <p><strong>Poll votes:</strong></p>
   <table>
    <thead>
     <tr>
      <td>SF
      <td>F
      <td>N
      <td>A
      <td>SA
    <tbody>
     <tr>
      <td>10
      <td>17
      <td>2
      <td>0
      <td>0
     <tr>
      <td colspan="5"><strong>Abstain:</strong> 16
   </table>
    <br><strong>Poll outcome:</strong>✅ consensus 
   <p><strong>Salient comments:</strong></p>
   <ul>
    <li><strong>Strong Favor:</strong> 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. 
   </ul>
   <h2 class="heading settled" data-level="6" id="process"><span class="secno">6. </span><span class="content">Polling Process</span><a class="self-link" href="#process"></a></h2>
   <p>For each poll, participants are asked to vote one of:</p>
   <ul>
    <li data-md>
     <p>Strongly in favor</p>
    <li data-md>
     <p>In favor</p>
    <li data-md>
     <p>Neutral</p>
    <li data-md>
     <p>Against</p>
    <li data-md>
     <p>Strongly against</p>
   </ul>
   <p>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.</p>
   <h2 class="heading settled" data-level="7" id="telecons"><span class="secno">7. </span><span class="content">Teleconferences</span><a class="self-link" href="#telecons"></a></h2>
   <p>Here are the minutes for the virtual discussions that were held since the Prague meeting in February 2020:</p>
   <ol>
    <li>2020-04-09 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020">Issue Processing</a> 
    <li>2020-04-15 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020">Issue Processing</a> 
    <li>2020-04-23 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020">Issue Processing</a> 
    <li>2020-04-29 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-29-Apr-2020">Issue Processing</a> 
    <li>2020-05-07 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-07-May-2020">Issue Processing</a> 
    <li>2020-05-13 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-13-May-2020">Issue Processing</a> 
    <li>2020-05-21 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1393-21-May-2020">A General Property Customization Mechanism</a>—<a data-link-type="biblio" href="#biblio-p1393r0">[P1393R0]</a> (<a href="https://wg21.link/P1393/github">P1393 tracking issue</a>) 
    <li>2020-06-10 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-D2139R1-10-June-2020">Reviewing Deprecated Facilities of C++20 for C++23</a>—<a data-link-type="biblio" href="#biblio-p2139r1">[P2139R1]</a> (<a href="https://wg21.link/P2139/github">P2139 tracking issue</a>) 
    <li>2020-06-18 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1949-18-June-2020">C++ Identifier Syntax using Unicode Standard Annex 31</a>—<a data-link-type="biblio" href="#biblio-p1949r4">[P1949R4]</a> (<a href="https://wg21.link/P1949/github">P1949 tracking issue</a>) 
    <li>2020-06-24 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1467-24-June-2020">Extended floating-point types and standard names</a>—<a data-link-type="biblio" href="#biblio-p1467r4">[P1467R4]</a> (<a href="https://wg21.link/P1467/github">P1467 tracking issue</a>) 
    <li>2020-07-02 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2156-P2173-2-July-2020">Allow Duplicate Attributes, Attributes on Lambda-Expressions</a>—<a data-link-type="biblio" href="#biblio-p2156r0">[P2156R0]</a> (<a href="https://wg21.link/P2156/github">P2156 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2173r0">[P2173R0]</a> (<a href="https://wg21.link/P2173/github">P2173 tracking issue</a>) 
    <li>2020-07-08 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1726R3-8-July-2020">Pointer lifetime-end zap and provenance, too</a>—<a data-link-type="biblio" href="#biblio-p1726r3">[P1726R3]</a> (<a href="https://wg21.link/P1726/github">P1726 tracking issue</a>) 
    <li>2020-07-16 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1726R3-16-July-2020">Guaranteed copy elision for return variables</a>—<a data-link-type="biblio" href="#biblio-p2025r1">[P2025R1]</a> (<a href="https://wg21.link/P2025/github">P2025 tracking issue</a>) 
    <li>2020-07-30 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2139R2ReviewingDeprecatedFacilitiesOfC20ForC23P2186R0RemovingGarbageCollectionSupport-30-July-2020">Reviewing Deprecated Facilities of C++20 for C++23, Removing Garbage Collection Support</a>—<a data-link-type="biblio" href="#biblio-p2139r2">[P2139R2]</a> (<a href="https://wg21.link/P2139/github">P2139 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2186r0">[P2186R0]</a> (<a href="https://wg21.link/P2186/github">P2186 tracking issue</a>) 
    <li>2020-08-05 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1875R0-5-Aug-2020">Transactional Memory Lite Support in C++</a>—<a data-link-type="biblio" href="#biblio-p1875r0">[P1875R0]</a> (<a href="https://wg21.link/P1875/github">P1875 tracking issue</a>) 
    <li>2020-08-19 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2013R2FreestandingLanguage:Optional::operatorNewP2201R0MixedStringLiteralConcatenation-19-Aug-2020">Freestanding Language: Optional <code class="highlight"><c- o>::</c-><c- k>operator</c-> <c- k>new</c-></code>, Mixed string literal concatenation</a>—<a data-link-type="biblio" href="#biblio-p2013r2">[P2013R2]</a> (<a href="https://wg21.link/P2013/github">P2013 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2201r0">[P2201R0]</a> (<a href="https://wg21.link/P2201/github">P2201 tracking issue</a>) 
    <li>2020-08-27 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-D2211R0-27-Aug-2020">Exhaustiveness Checking for Pattern Matching</a>—<a data-link-type="biblio" href="#biblio-p1371r3">[P1371R3]</a> (<a href="https://wg21.link/P1371/github">P1371 tracking issue</a>) 
    <li>2020-09-02 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1967-02-Sep-2020"><code class="highlight"><c- cp>#embed</c-></code> - a simple, scannable preprocessor-based resource acquisition method</a>—<a data-link-type="biblio" href="#biblio-p1967r2">[P1967R2]</a> (<a href="https://wg21.link/P1967/github">P1967 tracking issue</a>) 
    <li>2020-09-10 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2011R1-10-Sep-2020">A pipeline-rewrite operator</a>—<a data-link-type="biblio" href="#biblio-p2011r1">[P2011R1]</a> (<a href="https://wg21.link/P2011/github">P2011 tracking issue</a>) 
    <li>2020-09-16 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1371-16-Sep-2020">Pattern matching: inspect is always an expression</a>—<a data-link-type="biblio" href="#biblio-p1371r3">[P1371R3]</a> (<a href="https://wg21.link/P1371/github">P1371 tracking issue</a>) 
    <li>2020-09-24 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1949-24-Sep-2020">C++ Identifier Syntax using Unicode Standard Annex 31, Member Templates for Local Classes</a>—<a data-link-type="biblio" href="#biblio-p1949r6">[P1949R6]</a> (<a href="https://wg21.link/P1949/github">P1949 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2044r0">[P2044R0]</a> (<a href="https://wg21.link/P2044/github">P2044 tracking issue</a>) 
    <li>2020-09-30 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-30-Sep-2020">Narrowing contextual conversions to bool, Generalized pack declaration and usage</a>—<a data-link-type="biblio" href="#biblio-p1401r3">[P1401R3]</a> (<a href="https://wg21.link/P1401/github">P1401 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p1858r2">[P1858R2]</a> (<a href="https://wg21.link/P1858/github">P1858 tracking issue</a>) 
    <li>2020-10-08 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-8-Oct-2020">Compound Literals, <code class="highlight"><c- k>if</c-> <c- k>consteval</c-></code></a>—<a data-link-type="biblio" href="#biblio-p2174r0">[P2174R0]</a> (<a href="https://wg21.link/P2174/github">P2174 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p1938r1">[P1938R1]</a> (<a href="https://wg21.link/P1938/github">P1938 tracking issue</a>) 
    <li>2020-10-14 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG14-Oct-2020">Inline Namespaces: Fragility Bites, Trimming whitespaces before line splicing</a>—<a data-link-type="biblio" href="#biblio-p1701r1">[P1701R1]</a> (<a href="https://wg21.link/P1701/github">P1701 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2223r0">[P2223R0]</a> (<a href="https://wg21.link/P2223/github">P2223 tracking issue</a>) 
    <li>2020-10-22 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG22-Oct-2020">Issues Processing</a> 
    <li>2020-10-28 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG28-Oct-2020">Issues Processing</a> 
    <li>2020-11-05 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG05-Nov-2020">Deducing <code class="highlight"><c- k>this</c-></code></a>—<a href="https://wg21.link/P0847r5">P0847R5</a> (<a href="https://wg21.link/P0847/github">P0847 tracking issue</a>) 
    <li>2020-11-19 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG19-Nov-2020"><code class="highlight"><c- k>goto</c-></code> in pattern matching</a> 
    <li>2020-12-03 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG03-Dec-2020"><code class="highlight"><c- k>auto</c-><c- p>(</c-><c- n>x</c-><c- p>)</c-></code>: decay-copy in the language</a>—<a href="https://wg21.link/P0849r5">P0849R5</a> (<a href="https://wg21.link/P0849/github">P0849 tracking issue</a>) 
    <li>2021-01-14 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/Polls-2021-01-14">Polls</a> 
    <li>2021-01-20 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/Minutes-2021-01-20">Final polls preparation</a> 
    <li>2021-01-28 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-01-28">P2012 Fix the range‐based for loop</a> 
    <li>2021-02-03 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-02-03">P2280 Using unknown references in constant expressions</a> 
    <li>2021-02-11 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-02-11">P1974 Non-transient constexpr allocation using <code class="highlight"><c- n>propconst</c-></code></a> 
    <li>2021-02-17 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-02-17">P2242 Non-literal variables (and labels and <code class="highlight"><c- k>goto</c-></code>s) in <code class="highlight"><c- k>constexpr</c-></code> functions</a> 
    <li>2021-02-25 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-02-25">P1371 pattern matching: implementation experience</a> 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 <a href="https://godbolt.org/z/fdd5j4">Godbolt demo</a>. 
    <li>2021-03-02 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EvolutionJoint-2021-03-02">P2279R0 We need a language mechanism for customization points</a> joint EWG+LEWG session 
    <li>2021-03-11 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-03-11">P2285 Are default function arguments in the immediate context?</a> 
    <li>2021-03-17 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-03-17">P2266 Simpler implicit move</a> 
    <li>2021-03-25 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-03-25">P2128 Multidimensional subscript operator</a> 
    <li>2021-03-31 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-03-31">P2036 Changing scope for lambda trailing-return-type, and P2287 Designated-initializers for base classes</a> 
    <li>2021-04-08 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-04-08">Pattern matching identifier patterns syntax: <code class="highlight"><c- n>let</c-></code> vs <code class="highlight"><c- k>auto</c-></code> vs none</a> 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. 
    <li>2021-04-22 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-04-22">P2334 Add support for preprocessing directives <code class="highlight"><c- n>elifdef</c-></code> and <code class="highlight"><c- n>elifndef</c-></code>, and P2246 Character encoding of diagnostic text</a> 
    <li>2021-04-28 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-04-28">Final discussion of the polls, and P2066 Suggested draft TS for C++ Extensions for Minimal Transactional Memory</a> 
    <li>2021-05-06 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-05-06">P2314 Character sets and encodings, and quick review of r2 for P2280 Using unknown references in constant expressions</a> 
    <li>2021-05-12 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-05-12">P2255 A type trait to detect reference binding to temporary</a> 
    <li>2021-05-20 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-05-20">P2025 Guaranteed copy elision for named return objects</a> 
    <li>2021-05-26 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-05-26">P2041 Deleting variable templates</a> 
    <li>2021-06-03 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-06-03">P1967 <code class="highlight"><c- cp>#embed</c-></code> — a simple, scannable preprocessor-based resource acquisition method</a> 
    <li>2021-06-14 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/P2138">Joint session with LEWG on P2138 Rules of Design <code class="highlight"><c- o>&lt;=></c-></code> Specification engagement</a> 
    <li>2021-06-23 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-06-23">P1701 Inline Namespaces: Fragility Bites</a> 
    <li>2021-07-01 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-07-01">P2360R0 Extend init-statement to allow alias-declaration, and P2290 Delimited escape sequences, and P2316 Consistent character literal encoding</a> 
    <li>2021-07-07 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-07-07">P2392R0 Pattern matching using <code class="highlight"><c- n>is</c-></code> and <code class="highlight"><c- n>as</c-></code></a> 
    <li>2021-07-21 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-07-21">P2350 constexpr class</a> 
    <li>2021-07-29 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-07-29">P1169 <code class="highlight"><c- k>static</c-> <c- k>operator</c-><c- p>()</c-></code></a> 
    <li>2021-08-04 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-08-04">P2347 Argument type deduction for non-trailing parameter packs</a> 
    <li>2021-08-12 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-08-12">P2355 Postfix fold expressions</a> 
    <li>2021-08-26 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-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</a> 
    <li>2021-09-01 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-01">P2414R1 Pointer lifetime-end zap proposed solutions</a> 
    <li>2021-09-15 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-15">P2327 De-deprecating volatile compound assignment</a> 
    <li>2021-09-23 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-23">P2277 Packs outside of Templates</a> 
    <li>2021-09-29 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-29">P2012 Fix the range-based for loop</a> 
    <li>2021-10-07 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-10-07">P2280 Using unknown pointers and references in constant expressions &amp;&amp; P2266 Simpler implicit move</a> 
    <li>2021-10-13 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-10-13">P2448 Relaxing some <code class="highlight"><c- k>constexpr</c-></code> restrictions &amp;&amp; P2350 <code class="highlight"><c- k>constexpr</c-></code> class</a> 
    <li>2021-10-21 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-10-21">P1467 extended floating-point</a> 
    <li>2021-10-27 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-10-27">P2437 support for <code class="highlight"><c- cp>#warning</c-></code></a> 
    <li>2021-11-04 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-11-04">P1494 Partial program correctness</a> 
    <li>2021-11-10 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-11-10">P2348 Whitespaces Wording Revamp &amp;&amp; P2071 Named universal character escapes</a> 
    <li>2021-12-02 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-12-02">P2324 Labels at the end of compound statements &amp;&amp; P114R5 Portable assumptions</a> 
    <li>2021-12-08 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-12-08">P1705 Enumerating Core Undefined Behavior (short paper, unlikely that there’s content for EWG, let SG12 send to CWG) &amp;&amp; P2468R0 The Equality Operator You Are Looking For</a> 
    <li>2021-12-16 <a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-12-16">P1467R7 Extended floating-point types and standard names</a> 
   </ol>
   <h2 class="heading settled" data-level="8" id="issues"><span class="secno">8. </span><span class="content">Remaining Open Issues</span><a class="self-link" href="#issues"></a></h2>
   <p>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.</p>
   <table cellpadding="0" cellspacing="0">
    <tbody>
     <tr>
      <td valign="middle">
       <p><b>From</b></p>
      <td valign="top">
       <p><b>#</b></p>
      <td valign="top">
       <p><b>Title</b></p>
      <td valign="top">
       <p><b>Notes</b></p>
      <td valign="top">
       <p><b>Resolution</b></p>
     <tr>
      <td valign="top">
       <p>Lib</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-lwg2432">[LWG2432]</a></p>
      <td valign="top">
       <p>initializer_list assignability</p>
      <td valign="top">
       <p>std::initializer_list::operator= [support.initlist] is horribly broken and it needs deprecation:</p>
       <p><br></p>
       <p>std::initializer_list&lt;foo> a = {{1}, {2}, {3}};</p>
       <p>a = {{4}, {5}, {6}};</p>
       <p>// New sequence is already destroyed.</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p><b>Proposed resolution:</b></p>
       <p><br></p>
       <p>Edit [support.initlist] p1, class template initializer_list synopsis, as indicated:</p>
       <p><br></p>
       <p>namespace std {</p>
       <p>  template&lt;class E> class initializer_list {</p>
       <p>  public:</p>
       <p>    […]</p>
       <p>    constexpr initializer_list() noexcept;</p>
       <p></p>
       <p>    initializer_list(const initializer_list&amp;) = default;</p>
       <p>    initializer_list(initializer_list&amp;&amp;) = default;</p>
       <p>    initializer_list&amp; operator=(const initializer_list&amp;) = delete;</p>
       <p>    initializer_list&amp; operator=(initializer_list&amp;&amp;) = delete;</p>
       <p></p>
       <p>    constexpr size_t size() const noexcept;</p>
       <p>    […]</p>
       <p>  };</p>
       <p>  […]</p>
       <p>}</p>
       <p><br></p>
       <p><span><a href="http://wiki.edg.com/bin/view/Wg21cologne/LWGTelecon-2014-12-18">LWG telecon</a></span> 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,</p>
       <p><br></p>
       <p>auto il1 = {1,2,3};</p>
       <p>auto il2 = {4,5,6};</p>
       <p>il1 = {7,8,9}; // currently well-formed but dangles immediately; should be ill-formed</p>
       <p>il1 = std::move(il2); // currently well-formed and should remain so</p>
       <p><br></p>
       <p><b>Meeting:</b> Proposed resolution:</p>
<pre class="highlight"><c- n>initializer_list</c-><c- p>(</c-><c- k>const</c-> <c- n>initializer_list</c-><c- o>&amp;</c-><c- p>)</c-> <c- o>=</c-> <c- k>default</c-><c- p>;</c->
<c- n>initializer_list</c-><c- p>(</c-><c- n>initializer_list</c-><c- o>&amp;&amp;</c-><c- p>)</c-> <c- o>=</c-> <c- k>default</c-><c- p>;</c->
<c- p>[[</c-><c- n>deprecated</c-><c- p>]]</c-> <c- n>initializer_list</c-><c- o>&amp;</c-> <c- k>operator</c-><c- o>=</c-><c- p>(</c-><c- k>const</c-> <c- n>initializer_list</c-><c- o>&amp;</c-><c- p>)</c-> <c- o>=</c-> <c- k>default</c-><c- p>;</c->
<c- p>[[</c-><c- n>deprecated</c-><c- p>]]</c-> <c- n>initializer_list</c-><c- o>&amp;</c-> <c- k>operator</c-><c- o>=</c-><c- p>(</c-><c- n>initializer_list</c-><c- o>&amp;&amp;</c-><c- p>)</c-> <c- o>=</c-> <c- k>default</c-><c- p>;</c->
</pre>
       <p>SF F N A SA</p>
       <p>0 3 12 0 0</p>
       <p>JF <a href="https://lists.isocpp.org/lib-ext/2020/05/15334.php"><span>emailed LEWG</span></a>, to see if they have an opinion, no feedback. Asked LEWG chairs to schedule for a telecon.</p>
       <p><span><a href="https://lists.isocpp.org/lib/2020/10/17760.php">LWG discussed</a></span> priority.</p>
      <td valign="top">
       <p>♻️</p>
     <tr>
      <td valign="top">
       <p>Lib</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-lwg2813">[LWG2813]</a></p>
      <td valign="top">
       <p>std::function should not return dangling references</p>
      <td valign="top">
       <p>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.</p>
       <p><br></p>
       <p>A minimal example of well-formed code under the current standard that exhibits this issue:</p>
       <p><br></p>
       <p>int main()  {</p>
       <p>  std::function&lt;const int&amp;()> F([]{ return 42; });</p>
       <p>  int x = F(); // oops!</p>
       <p>}</p>
       <p><br></p>
       <p><b>Proposed resolution:</b></p>
       <p><br></p>
       <p>Add a second paragraph to the remarks section of 20.14.16.2.1 [func.wrap.func.con]:</p>
       <p><br></p>
       <p>template&lt;class F> function(F f);</p>
       <p>-7- Requires: F shall be CopyConstructible.</p>
       <p>-8- Remarks: This constructor template shall not participate in overload resolution unless</p>
       <ul>
        <li><span></span>F is Lvalue-Callable (20.14.16.2 [func.wrap.func]) for argument types ArgTypes... and return type R, and<br> 
        <li><span></span>If R is type "reference to T" and INVOKE(ArgTypes...) has value category V and type U:<br> 
        <ul>
         <li><span></span>V is a prvalue, U is a class type, and T is not reference-related (9.4.3 [dcl.init.ref]) to U, and<br> 
         <li><span></span>V is an lvalue or xvalue, and either U is a class type or T is reference-related to U.<br> 
        </ul>
       </ul>
       <p>[…]</p>
       <p><br></p>
       <p><b>Tim:</b> 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 <a href="https://lists.isocpp.org/lib/2017/07/3256.php"><span>https://lists.isocpp.org/lib/2017/07/3256.php</span></a>).</p>
       <p><br></p>
       <p><b>Meeting:</b> </p>
       <p>Tim wrote <a href="https://wg21.link/p2255"><span>p2255</span></a> to address this.</p>
       <p>Ville thinks there should be an analysis of alternative approaches.</p>
       <p>Also see <a href="http://wg21.link/P0932"><span>P0932</span></a>.</p>
      <td valign="top">
       <p>♻️</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2261">[CWG2261]</a></p>
      <td valign="top">
       <p>Explicit instantiation of in-class <code class="highlight"><c- k>friend</c-></code> definition</p>
      <td valign="top">
<pre class="highlight"><c- k>struct</c-> <c- n>S</c-> <c- p>{</c-> 
   <c- k>template</c-> <c- o>&lt;</c-><c- k>class</c-> <c- nc>T</c-><c- o>></c-> <c- k>friend</c-> <c- b>void</c-> <c- n>f</c-><c- p>(</c-><c- n>T</c-><c- p>)</c-> <c- p>{</c-> <c- p>}</c-> 
  <c- p>};</c-> 
  <c- k>template</c-> <c- b>void</c-> <c- nf>f</c-><c- p>(</c-><c- b>int</c-><c- p>);</c->  <c- c1>// Well-formed?</c->
</pre>
       <p>A <code class="highlight"><c- k>friend</c-></code> is not found by ordinary name lookup until it is explicitly declared in the containing namespace, but declaration matching does not use ordinary name lookup. There is implementation divergence on the handling of this example.</p>
       <p><br></p>
       <p><a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-29-Apr-2020">Note 2020-04-29</a> Tentative agreement: This should be well-formed.</p>
       <p>SF 1 F 10 N 2 A 1 SA 0 </p>
       <p>JF <a href="https://lists.isocpp.org/ext/2020/05/13708.php"><span>emailed EWG / Core about this</span></a>.</p>
       <p>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.</p>
       <p><a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG22-Oct-2020">Notes 2020-10-22</a>: 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.</p>
       <p><a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-23">Notes 2021-09-23</a>: 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. </p>
<pre class="highlight"><c- o>|</c-> <c- n>SF</c-> <c- o>|</c-> <c- n>F</c->  <c- o>|</c-> <c- n>N</c->  <c- o>|</c->  <c- n>A</c-> <c- o>|</c-> <c- n>SA</c-> <c- o>|</c->
<c- o>|</c-> <c- mi>3</c->  <c- o>|</c-> <c- mi>8</c->  <c- o>|</c-> <c- mi>3</c->  <c- o>|</c->  <c- mi>0</c-> <c- o>|</c->  <c- mi>0</c-> <c- o>|</c->
</pre>
       <p></p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2270">[CWG2270]</a></p>
      <td valign="top">
       <p>Non-<code class="highlight"><c- kr>inline</c-></code> functions and explicit instantiation declarations</p>
      <td valign="top">
       <p><b>Hubert:</b> question over the role of the <code class="highlight"><c- kr>inline</c-></code> keyword in relation to explicit instantiation declarations.</p>
       <p>For <code class="highlight"><c- kr>inline</c-></code> functions, explicit instantiation declarations do not have the effect of suppressing implicit instantiation.</p>
       <p>A user’s desire for wanting to suppress implicit instantiation can arise for different reasons:</p>
       <p>To reduce space in object files, executables, etc. and similarly to reduce the number of input symbols to the linker</p>
       <p>To reduce compile time in performing semantic analysis for instantiations whose definitions are provided elsewhere</p>
       <p>To control point-of-instantiation, avoiding contexts where the requisite declarations are not declared</p>
       <p>The special rule around inline functions allows <code class="highlight"><c- kr>inline</c-></code>-ness to be used to indicate that the first reason is the intent and that instantiation-for-inlining is okay.</p>
       <p>Consider the following as a translation unit:</p>
<pre class="highlight"><c- k>template</c-> <c- o>&lt;</c-><c- k>typename</c-> <c- n>T</c-><c- o>></c->
<c- c1>//inline</c->
<c- b>void</c-> <c- n>f</c-><c- p>(</c-><c- n>T</c-> <c- n>t</c-><c- p>)</c-> <c- p>{</c-> <c- n>g</c-><c- p>(</c-><c- n>t</c-><c- p>);</c-> <c- p>}</c->
<c- k>enum</c-> <c- nl>E</c-> <c- p>:</c-> <c- b>int</c-><c- p>;</c->
<c- k>extern</c-> <c- k>template</c-> <c- b>void</c-> <c- nf>f</c-><c- p>(</c-><c- n>E</c-><c- p>);</c->
<c- b>void</c-> <c- nf>h</c-><c- p>(</c-><c- n>E</c-> <c- n>e</c-><c- p>)</c-> <c- p>{</c-> <c- n>f</c-><c- p>(</c-><c- n>e</c-><c- p>);</c-> <c- p>}</c->
</pre>
       <p>Marking the template definition <code class="highlight"><c- kr>inline</c-></code> would mean that the intended declaration for <code class="highlight"><c- n>g</c-></code> would need to be provided as the best candidate at the points-of-instantiation for <code class="highlight"><c- n>f</c-><c- o>&lt;</c-><c- n>E</c-><c- o>></c-></code>.</p>
       <p>The issue initially points out that this use of the <code class="highlight"><c- kr>inline</c-></code> keyword does not match a view that <code class="highlight"><c- kr>inline</c-></code> is essentially an ODR tool to allow multiple definitions (as opposed to a way to indicate desire for inlining) and proposed that <code class="highlight"><c- k>extern</c-> <c- k>template</c-></code> merely has the effect of suppressing definitions in terms of linkage (regardless of the <code class="highlight"><c- kr>inline</c-></code> keyword). Such a change would affect the usability of the feature for user intent that falls within the latter two options above.</p>
       <p>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?"</p>
       <p><b>Meeting:</b></p>
       <p>Hubert <a href="https://lists.isocpp.org/ext/2020/05/13799.php"><span>forked the thread on the reflector</span></a>. Might want the education SG to take a look, or might want a paper.</p>
       <p><b>Meeting 2020-10-28</b>: Inbal will try to put together the wording, to prove / disprove whether this is a defect.</p>
       <p><a href="https://wiki.edg.com/bin/view/Wg21telecons2021/EWG-2021-09-23">Notes 2021-09-23</a>: POLL: in a new world with modules, inline isn’t merely an ODR tool. We therefore believe that CWG2270 is Not a Defect. </p>
<pre class="highlight"><c- o>|</c-> <c- n>SF</c-> <c- o>|</c-> <c- n>F</c->  <c- o>|</c-> <c- n>N</c->  <c- o>|</c->  <c- n>A</c-> <c- o>|</c-> <c- n>SA</c-> <c- o>|</c->
<c- o>|</c-> <c- mi>0</c->  <c- o>|</c-> <c- mi>10</c-> <c- o>|</c-> <c- mi>2</c->  <c- o>|</c->  <c- mi>0</c-> <c- o>|</c->  <c- mi>0</c-> <c- o>|</c->
</pre>
      <td valign="top">
       <p>NAD</p>
     <tr>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg794">[CWG794]</a></p>
      <td valign="top">
       <p>Base-derived conversion in member type of pointer-to-member conversion</p>
      <td valign="top">
       <p>Related to <a href="http://wg21.link/cwg170"><span>CWG 170</span></a>, drafting by Clark seems unlikely. This is section 2.1 of Jeff Snyder’s <a href="http://wg21.link/P0149R0"><span>P0149R0</span></a>, which was approved by EWG, <a href="http://wiki.edg.com/bin/view/Wg21oulu/P0149R0"><span>4 years ago</span></a>, waiting for wording.</p>
       <p>JF reached out to Jeff. Did wording with Jens, main blocker is lack of implementation.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020"><span>notes</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg900">[CWG900]</a></p>
      <td valign="top">
       <p>Lifetime of temporaries in range-based for</p>
      <td valign="top">
       <p>// some function</p>
       <p>  std::vector&lt;int> foo();</p>
       <p>  // correct usage</p>
       <p>  auto v = foo();</p>
       <p>  for( auto i : reverse(v) ) { std::cout &lt;&lt; i &lt;&lt; std::endl; }</p>
       <p>  // problematic usage</p>
       <p>  for( auto i : reverse(foo()) ) { std::cout &lt;&lt; i &lt;&lt; std::endl; }</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020"><span>notes</span></a>, also <a href="https://wiki.edg.com/bin/view/Wg21rapperswil2014/EvolutionWorkingGroup"><span>discussed in Rapperswil 2014</span></a>) 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 <a href="http://wg21.link/p0614"><span>p0614</span></a>, <a href="http://wg21.link/p0577"><span>p0577</span></a>, <a href="http://wg21.link/p0936"><span>p0936</span></a>, <a href="http://wg21.link/p1179"><span>p1179</span></a>. We’ll explore the design space in a separate paper, Herb circled back with Nico on this, might write a paper. All in favor.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1008">[CWG1008]</a></p>
      <td valign="top">
       <p>Querying the alignment of an object</p>
      <td valign="top">
       <p><span><a href="https://godbolt.org/z/_SN8iF">https://godbolt.org/z/_SN8iF</a></span></p>
       <ul>
        <li><span></span>GCC already implements this extension without issuing a warning
        <li><span></span>Clang and EDG implement this extension for gcc compatibility, with a warning
        <li><span></span>MSVC does not yet implement this feature
       </ul>
       <p>Quick example using ‘auto’ illustrates why we might want this capability for objects as well as types.</p>
       <p>Principle of least astonishment suggests it is surprising for sizeof and alignof to behave differently in this regard.</p>
       <p>Recommend shipping this straight to core as soon as we can find a wording champion.</p>
       <p>We need to discuss with WG14.</p>
       <p>Questions for EWG to answer before forwarding:</p>
       <ul>
        <li><span></span>Should this be a unary operator, like sizeof, so "alignof x" is valid? Or should it be like typeid, where parens are required?
        <li><span></span>What would this mean? Is it the alignment of the type of the object? Or the compiler’s best guess of the alignment of the expression itself? Should it take into account any facts that are known about the expression other than its type? If so, which ones? (For example, if applied to an expression x or e.x and x is declared with an <code class="highlight"><c- k>alignas</c-></code> attribute, is that value returned?)
       </ul>
       <p>This needs a design paper rather than going straight to core.</p>
       <p><span><a href="https://godbolt.org/z/TeVA9T">https://godbolt.org/z/TeVA9T</a></span> GCC seems to report the alignment of the object not just of decltype(object).</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020"><span>notes</span></a>, also <a href="https://wiki.edg.com/bin/view/Wg21rapperswil2014/EvolutionWorkingGroup"><span>discussed in Rapperswil 2014</span></a>) 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.</p>
       <p>Inbal’s paper: <a href="http://wg21.link/P2152R0"><span>P2152R0</span></a></p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1077">[CWG1077]</a></p>
      <td valign="top">
       <p>Explicit specializations in non-containing namespaces</p>
      <td valign="top">
       <p>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.</p>
       <p>Additional note, April, 2015: See EWG issue <a href="http://wg21.link/cwg48"><span>48</span></a>.</p>
       <p>Might allow us to revert <a href="http://wg21.link/cwg2061"><span>DR2061</span></a> and all the horribleness that created and described in <a href="http://wg21.link/p1701"><span>p1701</span></a>.  The problem 1077 addresses is the motivating factor in dr2061.</p>
       <p>Also see <a href="http://wg21.link/cwg2370"><span>CWG 2370</span></a>.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020"><span>notes</span></a>) Suggest closing as Not A Defect. See <a href="http://wg21.link/p0665"><span>p0665</span></a>, <a href="http://wiki.edg.com/bin/view/Wg21rapperswil2018/P0665R1-Rap18"><span>minutes</span></a>. Continue under p0665 or a forked version of it. All in favor.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1433">[CWG1433]</a></p>
      <td valign="top">
       <p><i>trailing-return-type</i> and point of declaration</p>
      <td valign="top">
       <p>template &lt;class T> T list(T x);</p>
       <p>    template &lt;class H, class ...T></p>
       <p>    auto list(H h, T ...args) -> decltype(list(args...)); // list isn’t in scope in its own <i>trailing-return-type</i></p>
       <p>    auto list3 = list(1, 2, 3);</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>, also <a href="https://wiki.edg.com/bin/view/Wg21rapperswil2014/EvolutionWorkingGroup"><span>discussed in Rapperswil 2014</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1469">[CWG1469]</a></p>
      <td valign="top">
       <p>Omitted bound in array <i>new-expression</i></p>
      <td valign="top">
       <p>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]).</p>
       <p>should be considered to apply to the new-type-id variant, e.g.,</p>
       <p>  new (int[]){1, 2, 3}</p>
       <p>This was addressed by <a href="http://wg21.link/p1009"><span>p1009</span></a></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>) Suggest closing as Not A Defect. Addressed by P1009. No objection to unanimous consent.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1555">[CWG1555]</a></p>
      <td valign="top">
       <p>Language linkage and function type compatibility</p>
      <td valign="top">
       <p>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?</p>
       <p>Somewhat related to CWG1463.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>) no strong consensus at the moment, Erich Keane brought this up with SG12 Undefined Behavior. <a href="https://lists.isocpp.org/sg12/2020/05/0905.php"><span>Long discussion</span></a>, will need to revisit, need a paper.</p>
       <p><b>Meeting Oct 22nd 2020:</b> 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1643">[CWG1643]</a></p>
      <td valign="top">
       <p>Default arguments for template parameter packs</p>
      <td valign="top">
       <p>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?</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>) Suggest closing as Not A Defect. Interesting design space, but needs a paper, see N3416. No objection to unanimous consent.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1864">[CWG1864]</a></p>
      <td valign="top">
       <p>List-initialization of array objects</p>
      <td valign="top">
       <p>The resolution of issue <a href="http://wg21.link/cwg1467"><span>1467</span></a> now allows for initialization of aggregate classes from an object of the same type. Similar treatment should be afforded to array aggregates.</p>
       <p>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.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1871">[CWG1871]</a></p>
      <td valign="top">
       <p>Non-identifier characters in <i>ud-suffix</i></p>
      <td valign="top">
       <p>JF forwarded to SG16 Unicode given their work on TR31. Tracked on <a href="https://github.com/sg16-unicode/sg16/issues/61"><span>GitHub</span></a>. SG16 reviewed D1949R3, still needs wording changes. Discussed at <a href="https://github.com/sg16-unicode/sg16-meetings#april-22nd-2020"><span>the April 22nd SG16 telecon</span></a>.</p>
       <p><b>SG16 Poll:</b> Is there any objection to unanimous consent for recommending rejection of this proposal? No objection to unanimous consent.</p>
       <p><b>EWG Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes 2020-04-15</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-07-May-2020"><span>notes 2020-05-07</span></a>) Suggest closing as Not A Defect. No objection to unanimous consent.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1876">[CWG1876]</a></p>
      <td valign="top">
       <p>Preventing explicit specialization</p>
      <td valign="top">
       <p>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.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes</span></a>) Suggest closing as Not A Defect. No objection to unanimous consent. This could be a language feature, would need library usecase examples.</p>
       <p><b>Poll:</b> we are interested in such a paper SF 2 F 13 N 6 A 1 SA 0</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1915">[CWG1915]</a></p>
      <td valign="top">
       <p>Potentially-invoked destructors in non-throwing constructors</p>
      <td valign="top">
       <p>Since the base class constructor is non-throwing, the deleted base class destructor need not be referenced.</p>
       <p>There’s a typo in the issues list here: it should say "Since the <em>derived</em> class constructor is non-throwing, the deleted base class destructor need not be referenced."</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1923">[CWG1923]</a></p>
      <td valign="top">
       <p>Lvalues of type void</p>
      <td valign="top">
       <p>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.</p>
       <p>Might consider this a duplicate of the discussion on "regular void".</p>
       <p>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.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) Suggest closing as Not A Defect. Explore under the “regular void” umbrella. No objection to unanimous consent.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1934">[CWG1934]</a></p>
      <td valign="top">
       <p>Relaxing <i>exception-specification</i> compatibility requirements</p>
      <td valign="top">
       <p>According to 14.5 [except.spec] paragraph 4,</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p>This seems excessive for explicit specializations, considering that paragraph 6 applies a looser requirement for virtual functions:</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p>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,</p>
       <p><br></p>
       <p>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</p>
       <ul>
        <li><span></span>if the function is explicitly defaulted on its first declaration, it is defined as deleted;
        <li><span></span>otherwise, the program is ill-formed.<br> 
       </ul>
       <p>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.</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) JF will work with Mike to update wording to C++20. Will revisit.</p>
       <p>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.</p>
       <p><b>Meeting:</b> no objection to CWG taking it back, and marking it as NAD.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1957">[CWG1957]</a></p>
      <td valign="top">
       <p>decltype(auto) with direct-list-initialization</p>
      <td valign="top">
       <p>Paper <a href="http://wg21.link/N3922"><span>N3922</span></a> 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.,</p>
       <p>  auto x8a = { 1 };           // decltype(x8a) is std::initializer_list&lt;int></p>
       <p>  decltype(auto) x8d = { 1 }; // ill-formed, a braced-init-list is not an expression</p>
       <p>  auto x9a{ 1 };              // decltype(x9a) is int</p>
       <p>  decltype(auto) x9d{ 1 };    // decltype(x9d) is int</p>
       <p>See also issue <a href="http://wg21.link/cwg1467"><span>1467</span></a>, 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.</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2111">[CWG2111]</a></p>
      <td valign="top">
       <p>Array temporaries in reference binding</p>
      <td valign="top">
       <p>The current wording of the Standard appears to permit code like</p>
<pre class="highlight"><c- b>void</c-> <c- nf>f</c-><c- p>(</c-><c- k>const</c-> <c- b>char</c-> <c- p>(</c-><c- o>&amp;</c-><c- p>)[</c-><c- mi>10</c-><c- p>]);</c->
<c- b>void</c-> <c- nf>g</c-><c- p>()</c-> <c- p>{</c->
  <c- n>f</c-><c- p>(</c-><c- s>"123"</c-><c- p>);</c->
  <c- n>f</c-><c- p>({</c-><c- sc>'a'</c-><c- p>,</c-><c- sc>'b'</c-><c- p>,</c-><c- sc>'c'</c-><c- p>,</c-><c- sc>'\0'</c-><c- p>});</c->
<c- p>}</c->
</pre>
       <p>creating a temporary array of ten elements and binding the parameter reference to it. This is controversial and should be reconsidered. (See issues <a href="http://wg21.link/cwg1058"><span>1058</span></a> and <a href="http://wg21.link/cwg1232"><span>1232</span></a>.)</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) JF digging more, talking to Richard about this.</p>
       <p>Somewhat related to <a href="http://wg21.link/P2174"><span>P2174</span></a> compound literals.</p>
       <p>Would be very strange if</p>
       <p><span>  </span><code class="highlight"><c- k>const</c-> <c- b>char</c-> <c- p>(</c-><c- o>&amp;</c-><c- n>amp</c-><c- p>;</c-><c- o>&amp;</c-><c- n>amp</c-><c- p>;</c-><c- n>x</c-><c- p>)[</c-><c- mi>10</c-><c- p>]</c-> <c- o>=</c-> <c- p>{</c-><c- sc>'a'</c-><c- p>,</c-> <c- sc>'b'</c-><c- p>,</c-> <c- sc>'c'</c-><c- p>};</c-></code></p>
       <p>... were invalid but ...</p>
       <p><span>  </span><code class="highlight"><c- k>const</c-> <c- b>char</c-> <c- n>x</c-><c- p>[</c-><c- mi>10</c-><c- p>]</c-> <c- o>=</c-> <c- p>{</c-><c- sc>'a'</c-><c- p>,</c-> <c- sc>'b'</c-><c- p>,</c-> <c- sc>'c'</c-><c- p>};</c-></code></p>
       <p><span>  </span><code class="highlight"><c- k>const</c-> <c- b>char</c-> <c- p>(</c-><c- o>&amp;</c-><c- n>amp</c-><c- p>;</c-><c- o>&amp;</c-><c- n>amp</c-><c- p>;</c-><c- n>x</c-><c- p>)[</c-><c- mi>3</c-><c- p>]</c-> <c- o>=</c-> <c- p>{</c-><c- sc>'a'</c-><c- p>,</c-> <c- sc>'b'</c-><c- p>,</c-> <c- sc>'c'</c-><c- p>};</c-></code></p>
       <p>... 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</p>
       <p><span>  </span>T &amp;&amp;r = init;</p>
       <p>... can’t bind directly, we create a temporary initialized as if with</p>
       <p><span>  </span>T r = init;</p>
       <p>... and bind to that. (And similarly for const references.)</p>
       <p>Another question: Do we want to support (T){inits} as a synonym for T{inits}?</p>
       <p><br></p>
       <p><b>Meeting Oct 22nd 2020:</b> Note that the issue itself is defective, and <code class="highlight"><c- n>f</c-><c- p>(</c-><c- s>"123"</c-><c- p>)</c-></code> isn’t valid.</p>
       <p>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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2125">[CWG2125]</a></p>
      <td valign="top">
       <p>Copy elision and comma operator</p>
      <td valign="top">
       <p>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?</p>
       <p><br></p>
       <p>X f() {</p>
       <p>  X x;</p>
       <p>  return (0, x);</p>
       <p>}</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2132">[CWG2132]</a></p>
      <td valign="top">
       <p>Deprecated default generated copy constructors</p>
      <td valign="top">
       <p>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?</p>
       <p>Related: discussing under <a href="http://wg21.link/p2139"><span>p2139</span></a> deprecations.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-29-Apr-2020"><span>note 2020-04-29</span></a>) 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.</p>
      <td valign="top">
       <p>NAD</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg914">[CWG914]</a></p>
      <td valign="top">
       <p>Value-initialization of array types</p>
      <td valign="top">
       <p>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.</p>
       <p>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.</p>
       <p>This has become a more severe inconsistency after we adopted Ville’s <a href="http://wg21.link/P0960"><span>P0960</span></a> for C++20. Now it’s not only () that has this weird special-case restriction, it’s (a, b, c) too:</p>
       <p>using X = int[];</p>
       <p>X x{1, 2, 3}; // ok, int[3]</p>
       <p>X y(1, 2, 3); // ok, int[3]</p>
       <p>f(X{1, 2, 3}); // ok, int[3] temporary</p>
       <p>f(X(1, 2, 3)); // error</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020"><span>notes</span></a>) it is a defect, need a paper. David Stone trying to find a volunteer to write said paper. All in favor.</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1463">[CWG1463]</a></p>
      <td valign="top">
       <p>extern "C" alias templates</p>
      <td valign="top">
       <p>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?</p>
       <p>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 <a href="http://wg21.link/cwg13"><span>13</span></a>). The priority was deleted to allow CWG to consider the implications of that potential application of the facility.</p>
       <p>We should either have some way to express a dependent function type with C language linkage (and should accept <a href="http://wg21.link/cwg1555"><span>1555</span></a> 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.)</p>
       <p>Actively discussed on <a href="http://lists.isocpp.org/core/2020/04/8823.php"><span>CWG reflector</span></a>.</p>
       <p><br></p>
       <p><b>Davis’ interpretation of CWG discussion</b>:</p>
       <p>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.)</p>
       <p>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.</p>
       <p>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.)</p>
       <p>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.</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes 2020-04-15</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG22-Oct-2020"><span>notes 2020-10-22</span></a>, also <a href="https://wiki.edg.com/bin/view/Wg21rapperswil2014/EvolutionWorkingGroup"><span>discussed in Rapperswil 2014</span></a>) 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.</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1790">[CWG1790]</a></p>
      <td valign="top">
       <p>Ellipsis following function parameter pack</p>
      <td valign="top">
       <p>Although the current wording permits an ellipsis to immediately follow a function parameter pack, it is not clear that the &lt;cstdarg> facilities permit access to the ellipsis arguments.</p>
       <p>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).</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020"><span>notes</span></a>) 3 options: fix wording around “last parameter”, remove facility entirely (either va_start or function declarator), try to invent a language facility. JF <a href="https://lists.isocpp.org/ext/2020/04/13346.php"><span>emailed EWG</span></a> to see if anyone has a strong preference, or if we should send back to CWG to fix wording, long discussion.</p>
       <p><b>Michael Spertus:</b> I am willing to commit to including and analysis on this in an upcoming paper on parameter packs.</p>
       <p>JF followed up with Michael and Barry, no response.</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg1962">[CWG1962]</a></p>
      <td valign="top">
       <p>Type of __func__</p>
      <td valign="top">
       <p>Two questions have arisen regarding the treatment of the type of the __func__ built-in variable. First, some implementations accept</p>
       <p>  void f() {</p>
       <p>    typedef decltype(__func__) T;</p>
       <p>    T x = __func__;</p>
       <p>  }</p>
       <p>even though T is specified to be an array type.</p>
       <p>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</p>
       <p>  inline auto f() { return &amp;__func__; }</p>
       <p>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.</p>
       <p>Rationale (November, 2018): See also issue <a href="http://wg21.link/cwg2362"><span>2362</span></a>, which asks for the ability to use __func__ in a constexpr function. These two goals are incompatible.</p>
       <p>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 <em>demangling</em> 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).</p>
       <p>Note: C++20 has std::source_location::function_name.</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020"><span>notes 2020-04-23</span></a>) 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 <a href="https://lists.isocpp.org/ext/2020/04/13417.php"><span>brought it up on the mailing list</span></a>.</p>
       <p>We probably need a paper to disentangle this.</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2228">[CWG2228]</a></p>
      <td valign="top">
       <p>Ambiguity resolution for cast to function type</p>
      <td valign="top">
       <p><span><a href="http://wiki.edg.com/pub/Wg21summer2020/CoreWorkingGroup/cwg2228.html?twiki_redirect_cache=5aceede89e9128019e50cb532244e26f">Proposed resolution.</a></span></p>
       <p><br></p>
       <p>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</p>
       <p><br></p>
       <p>    (T())+3</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p>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.</p>
       <p><br></p>
       <p>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?</p>
       <p><br></p>
       <p>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?</p>
       <p><br></p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-29-Apr-2020"><span>note 2020-04-29</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssuesProcessingTeleconference2020-03-23"><span>notes 2020-03-23</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21summer2020/CoreWorkingGroup"><span>note from Core summer 2020</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21prague/CoreWorkingGroup"><span>notes from Core Prague 2020</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21kona2019/IssuesProcessingTeleconference,2019-01-07"><span>notes from Core 2019-01-07</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21kona2019/CoreWorkingGroup"><span>notes from Core Kona 2019</span></a>, <a href="https://wiki.edg.com/bin/view/Wg21cologne2019/CoreWorkingGroup"><span>notes from Core Cologne 2019</span></a>) This is an issue, we’d like to change the standard to resolve it: SF 0 F 6 N 4 A 3 SA 2</p>
       <p>Davis <a href="http://lists.isocpp.org/ext/2020/04/13473.php"><span>emailed EWG reflector</span></a>. Long discussion.</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2296">[CWG2296]</a></p>
      <td valign="top">
       <p>Are default argument instantiation failures in the “immediate context”?</p>
      <td valign="top">
       <p>Example 1:</p>
       <p>template &lt;typename T, typename U = T></p>
       <p>void fun(T v, U u = U()) {}</p>
       <p>void fun(...) {}</p>
       <p>struct X {</p>
       <p>    X(int) {} // no default ctor</p>
       <p>};</p>
       <p>int main()  {  fun (X(1)); }</p>
       <p><br></p>
       <p>Consider the following example (taken from issue 3 of paper <a href="http://wg21.link/P0348R0"><span>P0348R0</span></a>):</p>
       <p>Example 2:</p>
       <p>  template &lt;typename U> void fun(U u = U());</p>
       <p>  struct X {</p>
       <p>    X(int) {}</p>
       <p>  };</p>
       <p>  template &lt;class T> decltype(fun&lt;T>()) g(int) { }</p>
       <p>  template &lt;class> void g(long) { }</p>
       <p>  int main() { g&lt;X>(0); }</p>
       <p>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.</p>
       <p><b>Meeting:</b> (<a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-07-May-2020"><span>notes 2020-05-07</span></a>)</p>
       <p>The first example under issue 3 of paper P0348R0 should become well-formed.</p>
       <p>SF F N A SA</p>
       <p>0 1 4 3 6</p>
       <p>The second example under issue 3 of paper P0348R0 should become well-formed.</p>
       <p>SF F N A SA</p>
       <p>1 5 7 3 0</p>
       <p>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.</p>
       <p>Daveed / Hubert might entertain writing a paper explaining this.</p>
       <p>Ville <a href="http://lists.isocpp.org/ext/2020/05/13733.php"><span>emailed EWG about this</span></a>.</p>
       <p>JF contacted Andrzej to see if he’s interested in addressing this. Not sure he is.</p>
       <p><br></p>
       <p><b>Meeting 2020-10-28</b>: 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.</p>
       <p><br></p>
       <p><b>Meeting 2021-01-14:</b> Andrzej wrote a paper for this (<a href="https://lists.isocpp.org/ext/2021/01/15505.php"><span>emailed 2021-01-12 to EWG</span></a>).</p>
      <td valign="top">
       <p>Paper needed</p>
     <tr>
      <td valign="top">
       <p>Core</p>
      <td valign="top">
       <p><a data-link-type="biblio" href="#biblio-cwg2362">[CWG2362]</a></p>
      <td valign="top">
       <p>__func__ should be constexpr</p>
      <td valign="top">
       <p>The definition of __func__ in 9.5.1 [dcl.fct.def.general] paragraph 8 is:</p>
       <p>  static const char __func__[] = "function-name";</p>
       <p>This prohibits its use in constant expressions, e.g.,</p>
       <p>  int main () {</p>
       <p>    // error: the value of __func__ is not usable in a constant expression</p>
       <p>    constexpr char c = __func__[0];</p>
       <p>  }</p>
       <p>Rationale (November, 2018): See also issue <a href="http://wg21.link/cwg1962"><span>1962</span></a>, which asks that the type of __func__ be const char*. These two goals are incompatible.</p>
       <p><br></p>
       <p><b>Meeting:</b> handle with 1962.</p>
      <td valign="top">
       <p>Paper needed</p>
   </table>
   <h2 class="heading settled" data-level="9" id="future"><span class="secno">9. </span><span class="content">Near-future EWG plans</span><a class="self-link" href="#future"></a></h2>
   <p>We will continue to work on issue resolution, handle any C++23 fixes, start working on C++26, prioritizing according to <a data-link-type="biblio" href="#biblio-p0592r4">[P0592R4]</a>.</p>
  </main>
<script>
(function() {
  "use strict";
  var collapseSidebarText = '<span aria-hidden="true">←</span> '
                          + '<span>Collapse Sidebar</span>';
  var expandSidebarText   = '<span aria-hidden="true">→</span> '
                          + '<span>Pop Out Sidebar</span>';
  var tocJumpText         = '<span aria-hidden="true">↑</span> '
                          + '<span>Jump to Table of Contents</span>';

  var sidebarMedia = window.matchMedia('screen and (min-width: 78em)');
  var autoToggle   = function(e){ toggleSidebar(e.matches) };
  if(sidebarMedia.addListener) {
    sidebarMedia.addListener(autoToggle);
  }

  function toggleSidebar(on) {
    if (on == undefined) {
      on = !document.body.classList.contains('toc-sidebar');
    }

    /* Don’t scroll to compensate for the ToC if we’re above it already. */
    var headY = 0;
    var head = document.querySelector('.head');
    if (head) {
      // terrible approx of "top of ToC"
      headY += head.offsetTop + head.offsetHeight;
    }
    var skipScroll = window.scrollY < headY;

    var toggle = document.getElementById('toc-toggle');
    var tocNav = document.getElementById('toc');
    if (on) {
      var tocHeight = tocNav.offsetHeight;
      document.body.classList.add('toc-sidebar');
      document.body.classList.remove('toc-inline');
      toggle.innerHTML = collapseSidebarText;
      if (!skipScroll) {
        window.scrollBy(0, 0 - tocHeight);
      }
      tocNav.focus();
      sidebarMedia.addListener(autoToggle); // auto-collapse when out of room
    }
    else {
      document.body.classList.add('toc-inline');
      document.body.classList.remove('toc-sidebar');
      toggle.innerHTML = expandSidebarText;
      if (!skipScroll) {
        window.scrollBy(0, tocNav.offsetHeight);
      }
      if (toggle.matches(':hover')) {
        /* Unfocus button when not using keyboard navigation,
           because I don’t know where else to send the focus. */
        toggle.blur();
      }
    }
  }

  function createSidebarToggle() {
    /* Create the sidebar toggle in JS; it shouldn’t exist when JS is off. */
    var toggle = document.createElement('a');
      /* This should probably be a button, but appearance isn’t standards-track.*/
    toggle.id = 'toc-toggle';
    toggle.class = 'toc-toggle';
    toggle.href = '#toc';
    toggle.innerHTML = collapseSidebarText;

    sidebarMedia.addListener(autoToggle);
    var toggler = function(e) {
      e.preventDefault();
      sidebarMedia.removeListener(autoToggle); // persist explicit off states
      toggleSidebar();
      return false;
    }
    toggle.addEventListener('click', toggler, false);


    /* Get <nav id=toc-nav>, or make it if we don’t have one. */
    var tocNav = document.getElementById('toc-nav');
    if (!tocNav) {
      tocNav = document.createElement('p');
      tocNav.id = 'toc-nav';
      /* Prepend for better keyboard navigation */
      document.body.insertBefore(tocNav, document.body.firstChild);
    }
    /* While we’re at it, make sure we have a Jump to Toc link. */
    var tocJump = document.getElementById('toc-jump');
    if (!tocJump) {
      tocJump = document.createElement('a');
      tocJump.id = 'toc-jump';
      tocJump.href = '#toc';
      tocJump.innerHTML = tocJumpText;
      tocNav.appendChild(tocJump);
    }

    tocNav.appendChild(toggle);
  }

  var toc = document.getElementById('toc');
  if (toc) {
    createSidebarToggle();
    toggleSidebar(sidebarMedia.matches);

    /* If the sidebar has been manually opened and is currently overlaying the text
       (window too small for the MQ to add the margin to body),
       then auto-close the sidebar once you click on something in there. */
    toc.addEventListener('click', function(e) {
      if(e.target.tagName.toLowerCase() == "a" && document.body.classList.contains('toc-sidebar') && !sidebarMedia.matches) {
        toggleSidebar(false);
      }
    }, false);
  }
  else {
    console.warn("Can’t find Table of Contents. Please use <nav id='toc'> around the ToC.");
  }

  /* Wrap tables in case they overflow */
  var tables = document.querySelectorAll(':not(.overlarge) > table.data, :not(.overlarge) > table.index');
  var numTables = tables.length;
  for (var i = 0; i < numTables; i++) {
    var table = tables[i];
    var wrapper = document.createElement('div');
    wrapper.className = 'overlarge';
    table.parentNode.insertBefore(wrapper, table);
    wrapper.appendChild(table);
  }

})();
</script>
  <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2>
  <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3>
  <dl>
   <dt id="biblio-cwg1008">[CWG1008]
   <dd>Steve Clamage. <a href="https://wg21.link/cwg1008">Querying the alignment of an object</a>. 27 November 2009. extension. URL: <a href="https://wg21.link/cwg1008">https://wg21.link/cwg1008</a>
   <dt id="biblio-cwg1077">[CWG1077]
   <dd>Mike Spertus. <a href="https://wg21.link/cwg1077">Explicit specializations in non-containing namespaces</a>. 13 June 2010. extension. URL: <a href="https://wg21.link/cwg1077">https://wg21.link/cwg1077</a>
   <dt id="biblio-cwg1433">[CWG1433]
   <dd>Jason Merrill. <a href="https://wg21.link/cwg1433">trailing-return-type and point of declaration</a>. 20 December 2011. extension. URL: <a href="https://wg21.link/cwg1433">https://wg21.link/cwg1433</a>
   <dt id="biblio-cwg1463">[CWG1463]
   <dd>Daveed Vandevoorde. <a href="https://wg21.link/cwg1463">extern "C" alias templates</a>. 19 August 2011. extension. URL: <a href="https://wg21.link/cwg1463">https://wg21.link/cwg1463</a>
   <dt id="biblio-cwg1469">[CWG1469]
   <dd>Johannes Schaub. <a href="https://wg21.link/cwg1469">Omitted bound in array new-expression</a>. 12 February 2012. extension. URL: <a href="https://wg21.link/cwg1469">https://wg21.link/cwg1469</a>
   <dt id="biblio-cwg1555">[CWG1555]
   <dd>Daniel Krügler. <a href="https://wg21.link/cwg1555">Language linkage and function type compatibility</a>. 18 September 2012. extension. URL: <a href="https://wg21.link/cwg1555">https://wg21.link/cwg1555</a>
   <dt id="biblio-cwg1643">[CWG1643]
   <dd>Vinny Romano. <a href="https://wg21.link/cwg1643">Default arguments for template parameter packs</a>. 17 March 2013. extension. URL: <a href="https://wg21.link/cwg1643">https://wg21.link/cwg1643</a>
   <dt id="biblio-cwg1790">[CWG1790]
   <dd>Daryle Walker. <a href="https://wg21.link/cwg1790">Ellipsis following function parameter pack</a>. 1 October 2013. extension. URL: <a href="https://wg21.link/cwg1790">https://wg21.link/cwg1790</a>
   <dt id="biblio-cwg1864">[CWG1864]
   <dd>Alisdair Meredith. <a href="https://wg21.link/cwg1864">List-initialization of array objects</a>. 15 February 2014. extension. URL: <a href="https://wg21.link/cwg1864">https://wg21.link/cwg1864</a>
   <dt id="biblio-cwg1871">[CWG1871]
   <dd>Richard Smith. <a href="https://wg21.link/cwg1871">Non-identifier characters in ud-suffix</a>. 17 February 2014. extension. URL: <a href="https://wg21.link/cwg1871">https://wg21.link/cwg1871</a>
   <dt id="biblio-cwg1876">[CWG1876]
   <dd>John Spicer. <a href="https://wg21.link/cwg1876">Preventing explicit specialization</a>. 19 February 2014. extension. URL: <a href="https://wg21.link/cwg1876">https://wg21.link/cwg1876</a>
   <dt id="biblio-cwg1915">[CWG1915]
   <dd>Aaron Ballman. <a href="https://wg21.link/cwg1915">Potentially-invoked destructors in non-throwing constructors</a>. 15 April 2014. extension. URL: <a href="https://wg21.link/cwg1915">https://wg21.link/cwg1915</a>
   <dt id="biblio-cwg1923">[CWG1923]
   <dd>Richard Smith. <a href="https://wg21.link/cwg1923">Lvalues of type void</a>. 6 May 2014. extension. URL: <a href="https://wg21.link/cwg1923">https://wg21.link/cwg1923</a>
   <dt id="biblio-cwg1934">[CWG1934]
   <dd>Vinny Romano. <a href="https://wg21.link/cwg1934">Relaxing exception-specification compatibility requirements</a>. 3 June 2014. extension. URL: <a href="https://wg21.link/cwg1934">https://wg21.link/cwg1934</a>
   <dt id="biblio-cwg1957">[CWG1957]
   <dd>Vinny Romano. <a href="https://wg21.link/cwg1957">decltype(auto) with direct-list-initialization</a>. 20140630. extension. URL: <a href="https://wg21.link/cwg1957">https://wg21.link/cwg1957</a>
   <dt id="biblio-cwg1962">[CWG1962]
   <dd>Steve Clamage. <a href="https://wg21.link/cwg1962">Type of __func__</a>. 4 July 2014. extension. URL: <a href="https://wg21.link/cwg1962">https://wg21.link/cwg1962</a>
   <dt id="biblio-cwg2111">[CWG2111]
   <dd>Vinny Romano. <a href="https://wg21.link/cwg2111">Array temporaries in reference binding</a>. 2 April 2015. extension. URL: <a href="https://wg21.link/cwg2111">https://wg21.link/cwg2111</a>
   <dt id="biblio-cwg2125">[CWG2125]
   <dd>Vinny Romano. <a href="https://wg21.link/cwg2125">Copy elision and comma operator</a>. 6 May 2015. extension. URL: <a href="https://wg21.link/cwg2125">https://wg21.link/cwg2125</a>
   <dt id="biblio-cwg2132">[CWG2132]
   <dd>Nico Josuttis. <a href="https://wg21.link/cwg2132">Deprecated default generated copy constructors</a>. 28 May 2015. extension. URL: <a href="https://wg21.link/cwg2132">https://wg21.link/cwg2132</a>
   <dt id="biblio-cwg2228">[CWG2228]
   <dd>Richard Smith. <a href="https://wg21.link/cwg2228">Ambiguity resolution for cast to function type</a>. 2 February 2016. review. URL: <a href="https://wg21.link/cwg2228">https://wg21.link/cwg2228</a>
   <dt id="biblio-cwg2261">[CWG2261]
   <dd>Jens Maurer. <a href="https://wg21.link/cwg2261">Explicit instantiation of in-class friend definition</a>. 28 April 2016. extension. URL: <a href="https://wg21.link/cwg2261">https://wg21.link/cwg2261</a>
   <dt id="biblio-cwg2270">[CWG2270]
   <dd>Richard Smith. <a href="https://wg21.link/cwg2270">Non-inline functions and explicit instantiation declarations</a>. 10 June 2016. extension. URL: <a href="https://wg21.link/cwg2270">https://wg21.link/cwg2270</a>
   <dt id="biblio-cwg2296">[CWG2296]
   <dd>Jason Merrill. <a href="https://wg21.link/cwg2296">Are default argument instantiation failures in the “immediate context”?</a>. 25 June 2016. extension. URL: <a href="https://wg21.link/cwg2296">https://wg21.link/cwg2296</a>
   <dt id="biblio-cwg2362">[CWG2362]
   <dd>Anthony Polukhin. <a href="https://wg21.link/cwg2362">__func__ should be constexpr</a>. 23 October 2017. extension. URL: <a href="https://wg21.link/cwg2362">https://wg21.link/cwg2362</a>
   <dt id="biblio-cwg794">[CWG794]
   <dd>CH. <a href="https://wg21.link/cwg794">Base-derived conversion in member type of pointer-to-member conversion</a>. 3 March 2009. extension. URL: <a href="https://wg21.link/cwg794">https://wg21.link/cwg794</a>
   <dt id="biblio-cwg900">[CWG900]
   <dd>Thomas J. Gritzan. <a href="https://wg21.link/cwg900">Lifetime of temporaries in range-based for</a>. 12 May 2009. extension. URL: <a href="https://wg21.link/cwg900">https://wg21.link/cwg900</a>
   <dt id="biblio-cwg914">[CWG914]
   <dd>Gabriel Dos Reis. <a href="https://wg21.link/cwg914">Value-initialization of array types</a>. 10 June 2009. extension. URL: <a href="https://wg21.link/cwg914">https://wg21.link/cwg914</a>
   <dt id="biblio-lwg2432">[LWG2432]
   <dd>David Krauss. <a href="https://wg21.link/lwg2432">initializer_list assignability</a>. EWG. URL: <a href="https://wg21.link/lwg2432">https://wg21.link/lwg2432</a>
   <dt id="biblio-lwg2813">[LWG2813]
   <dd>Brian Bi. <a href="https://wg21.link/lwg2813">std::function should not return dangling references</a>. EWG. URL: <a href="https://wg21.link/lwg2813">https://wg21.link/lwg2813</a>
   <dt id="biblio-p0592r4">[P0592R4]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p0592r4">To boldly suggest an overall plan for C++23</a>. 25 November 2019. URL: <a href="https://wg21.link/p0592r4">https://wg21.link/p0592r4</a>
   <dt id="biblio-p1000r4">[P1000R4]
   <dd>Herb Sutter. <a href="https://wg21.link/p1000r4">C++ IS schedule</a>. 14 February 2020. URL: <a href="https://wg21.link/p1000r4">https://wg21.link/p1000r4</a>
   <dt id="biblio-p1018r11">[P1018r11]
   <dd>JF Bastien. <a href="https://wg21.link/p1018r11">C++ Language Evolution status - pandemic edition - 2021/05</a>. 1 June 2021. URL: <a href="https://wg21.link/p1018r11">https://wg21.link/p1018r11</a>
   <dt id="biblio-p1018r13">[P1018r13]
   <dd>JF Bastien. <a href="https://wg21.link/p1018r13">C++ Language Evolution status - pandemic edition – 2021/06-2021/08</a>. 6 September 2021. URL: <a href="https://wg21.link/p1018r13">https://wg21.link/p1018r13</a>
   <dt id="biblio-p1018r9">[P1018r9]
   <dd>JF Bastien. <a href="https://wg21.link/p1018r9">C++ Language Evolution status - pandemic edition - 2021/01–2021/03</a>. 8 March 2021. URL: <a href="https://wg21.link/p1018r9">https://wg21.link/p1018r9</a>
   <dt id="biblio-p1169r3">[P1169r3]
   <dd>Barry Revzin, Casey Carter. <a href="https://wg21.link/p1169r3">static operator()</a>. 14 October 2021. URL: <a href="https://wg21.link/p1169r3">https://wg21.link/p1169r3</a>
   <dt id="biblio-p1371r3">[P1371R3]
   <dd>Michael Park, Bruno Cardoso Lopes, Sergei Murzin, David Sankel, Dan Sarginson, Bjarne Stroustrup. <a href="https://wg21.link/p1371r3">Pattern Matching</a>. 15 September 2020. URL: <a href="https://wg21.link/p1371r3">https://wg21.link/p1371r3</a>
   <dt id="biblio-p1393r0">[P1393R0]
   <dd>D. S. Hollman, Chris Kohlhoff, Bryce Lelbach, Jared Hoberock, Gordon Brown, Michał Dominiak. <a href="https://wg21.link/p1393r0">A General Property Customization Mechanism</a>. 13 January 2019. URL: <a href="https://wg21.link/p1393r0">https://wg21.link/p1393r0</a>
   <dt id="biblio-p1401r3">[P1401R3]
   <dd>Andrzej Krzemieński. <a href="https://wg21.link/p1401r3">Narrowing contextual conversions to bool</a>. 27 May 2020. URL: <a href="https://wg21.link/p1401r3">https://wg21.link/p1401r3</a>
   <dt id="biblio-p1467r4">[P1467R4]
   <dd>David Olsen, Michał Dominiak. <a href="https://wg21.link/p1467r4">Extended floating-point types and standard names</a>. 14 June 2020. URL: <a href="https://wg21.link/p1467r4">https://wg21.link/p1467r4</a>
   <dt id="biblio-p1467r8">[P1467r8]
   <dd>David Olsen, Michał Dominiak, Ilya Burylov. <a href="https://wg21.link/p1467r8">Extended floating-point types and standard names</a>. 16 December 2021. URL: <a href="https://wg21.link/p1467r8">https://wg21.link/p1467r8</a>
   <dt id="biblio-p1494r2">[P1494r2]
   <dd>S. Davis Herring. <a href="https://wg21.link/p1494r2">Partial program correctness</a>. 13 November 2021. URL: <a href="https://wg21.link/p1494r2">https://wg21.link/p1494r2</a>
   <dt id="biblio-p1701r1">[P1701R1]
   <dd>Nathan Sidwell. <a href="https://wg21.link/p1701r1">Inline Namespaces: Fragility Bites</a>. 13 September 2020. URL: <a href="https://wg21.link/p1701r1">https://wg21.link/p1701r1</a>
   <dt id="biblio-p1726r3">[P1726R3]
   <dd>Paul E. McKenney, Maged Michael, Jens Mauer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Will Deacon, Michael Wong, and David Goldblatt. <a href="https://wg21.link/p1726r3">Pointer lifetime-end zap</a>. 21 February 2020. URL: <a href="https://wg21.link/p1726r3">https://wg21.link/p1726r3</a>
   <dt id="biblio-p1774r5">[P1774r5]
   <dd>Timur Doumler. <a href="https://wg21.link/p1774r5">Portable assumptions</a>. 16 December 2021. URL: <a href="https://wg21.link/p1774r5">https://wg21.link/p1774r5</a>
   <dt id="biblio-p1858r2">[P1858R2]
   <dd>Barry Revzin. <a href="https://wg21.link/p1858r2">Generalized pack declaration and usage</a>. 1 March 2020. URL: <a href="https://wg21.link/p1858r2">https://wg21.link/p1858r2</a>
   <dt id="biblio-p1875r0">[P1875R0]
   <dd>Michael Spear, Hans Boehm, Victor Luchangco, Michael Scott, Michael Wong. <a href="https://wg21.link/p1875r0">Transactional Memory Lite Support in C++</a>. 7 October 2019. URL: <a href="https://wg21.link/p1875r0">https://wg21.link/p1875r0</a>
   <dt id="biblio-p1938r1">[P1938R1]
   <dd>Barry Revzin, Daveed Vandevoorde, Richard Smith, Andrew Sutton. <a href="https://wg21.link/p1938r1">if consteval</a>. 2 March 2020. URL: <a href="https://wg21.link/p1938r1">https://wg21.link/p1938r1</a>
   <dt id="biblio-p1949r4">[P1949R4]
   <dd>Steve Downey, Zach Laine, Tom Honermann, Peter Bindels, Jens Maurer. <a href="https://wg21.link/p1949r4">C++ Identifier Syntax using Unicode Standard Annex 31</a>. 5 June 2020. URL: <a href="https://wg21.link/p1949r4">https://wg21.link/p1949r4</a>
   <dt id="biblio-p1949r6">[P1949R6]
   <dd>Steve Downey, Zach Laine, Tom Honermann, Peter Bindels, Jens Maurer. <a href="https://wg21.link/p1949r6">C++ Identifier Syntax using Unicode Standard Annex 31</a>. 15 September 2020. URL: <a href="https://wg21.link/p1949r6">https://wg21.link/p1949r6</a>
   <dt id="biblio-p1967r2">[P1967R2]
   <dd>JeanHeyd Meneide. <a href="https://wg21.link/p1967r2">#embed - a simple, scannable preprocessor-based resource acquisition method</a>. 2 March 2020. URL: <a href="https://wg21.link/p1967r2">https://wg21.link/p1967r2</a>
   <dt id="biblio-p1999r0">[P1999R0]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p1999r0">Process proposal: double-check evolutionary material via a Tentatively Ready status</a>. 25 November 2019. URL: <a href="https://wg21.link/p1999r0">https://wg21.link/p1999r0</a>
   <dt id="biblio-p2011r1">[P2011R1]
   <dd>Barry Revzin, Colby Pike. <a href="https://wg21.link/p2011r1">A pipeline-rewrite operator</a>. 16 April 2020. URL: <a href="https://wg21.link/p2011r1">https://wg21.link/p2011r1</a>
   <dt id="biblio-p2013r2">[P2013R2]
   <dd>Ben Craig. <a href="https://wg21.link/p2013r2">Freestanding Language: Optional ::operator new</a>. 14 August 2020. URL: <a href="https://wg21.link/p2013r2">https://wg21.link/p2013r2</a>
   <dt id="biblio-p2025r1">[P2025R1]
   <dd>Anton Zhilin. <a href="https://wg21.link/p2025r1">Guaranteed copy elision for return variables</a>. 15 June 2020. URL: <a href="https://wg21.link/p2025r1">https://wg21.link/p2025r1</a>
   <dt id="biblio-p2044r0">[P2044R0]
   <dd>Robert Leahy. <a href="https://wg21.link/p2044r0">Member Templates for Local Classes</a>. 12 January 2020. URL: <a href="https://wg21.link/p2044r0">https://wg21.link/p2044r0</a>
   <dt id="biblio-p2071r1">[P2071r1]
   <dd>Tom Honermann, Steve Downey, Peter Bindels, Corentin Jabot, R. Martinho Fernandes. <a href="https://wg21.link/p2071r1">Named universal character escapes</a>. 9 November 2021. URL: <a href="https://wg21.link/p2071r1">https://wg21.link/p2071r1</a>
   <dt id="biblio-p2139r1">[P2139R1]
   <dd>Alisdair Meredith. <a href="https://wg21.link/p2139r1">Reviewing Deprecated Facilities of C++20 for C++23</a>. 15 June 2020. URL: <a href="https://wg21.link/p2139r1">https://wg21.link/p2139r1</a>
   <dt id="biblio-p2139r2">[P2139R2]
   <dd>Alisdair Meredith. <a href="https://wg21.link/p2139r2">Reviewing Deprecated Facilities of C++20 for C++23</a>. 15 July 2020. URL: <a href="https://wg21.link/p2139r2">https://wg21.link/p2139r2</a>
   <dt id="biblio-p2145r1">[P2145R1]
   <dd>Bryce Adelstein Lelbach, Titus Winters, Fabio Fracassi, Billy Baker, Nevin Liber, JF Bastien, David Stone, Botond Ballo, Tom Honermann. <a href="https://wg21.link/p2145r1">Evolving C++ Remotely</a>. 15 September 2020. URL: <a href="https://wg21.link/p2145r1">https://wg21.link/p2145r1</a>
   <dt id="biblio-p2156r0">[P2156R0]
   <dd>Erich Keane. <a href="https://wg21.link/p2156r0">Allow Duplicate Attributes</a>. 15 April 2020. URL: <a href="https://wg21.link/p2156r0">https://wg21.link/p2156r0</a>
   <dt id="biblio-p2173r0">[P2173R0]
   <dd>Daveed Vandevoorde, Inbal Levi, Ville Voutilainen. <a href="https://wg21.link/p2173r0">Attributes on Lambda-Expressions</a>. 15 May 2020. URL: <a href="https://wg21.link/p2173r0">https://wg21.link/p2173r0</a>
   <dt id="biblio-p2174r0">[P2174R0]
   <dd>Zhihao Yuan. <a href="https://wg21.link/p2174r0">Compound Literals</a>. 16 May 2020. URL: <a href="https://wg21.link/p2174r0">https://wg21.link/p2174r0</a>
   <dt id="biblio-p2186r0">[P2186R0]
   <dd>JF Bastien, Alisdair Meredith. <a href="https://wg21.link/p2186r0">Removing Garbage Collection Support</a>. 12 July 2020. URL: <a href="https://wg21.link/p2186r0">https://wg21.link/p2186r0</a>
   <dt id="biblio-p2195r0">[P2195R0]
   <dd>Bryce Adelstein Lelbach. <a href="https://wg21.link/p2195r0">Electronic Straw Polls</a>. 15 September 2020. URL: <a href="https://wg21.link/p2195r0">https://wg21.link/p2195r0</a>
   <dt id="biblio-p2201r0">[P2201R0]
   <dd>Jens Maurer. <a href="https://wg21.link/p2201r0">Mixed string literal concatenation</a>. 14 July 2020. URL: <a href="https://wg21.link/p2201r0">https://wg21.link/p2201r0</a>
   <dt id="biblio-p2223r0">[P2223R0]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2223r0">Trimming whitespaces before line splicing</a>. 14 September 2020. URL: <a href="https://wg21.link/p2223r0">https://wg21.link/p2223r0</a>
   <dt id="biblio-p2266r2">[P2266r2]
   <dd>Arthur O'Dwyer. <a href="https://wg21.link/p2266r2">Simpler implicit move</a>. 20210831. URL: <a href="https://wg21.link/p2266r2">https://wg21.link/p2266r2</a>
   <dt id="biblio-p2280r3">[P2280r3]
   <dd>Barry Revzin. <a href="https://wg21.link/p2280r3">Using unknown references in constant expressions</a>. 18 August 2021. URL: <a href="https://wg21.link/p2280r3">https://wg21.link/p2280r3</a>
   <dt id="biblio-p2290r2">[P2290r2]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2290r2">Delimited escape sequences</a>. 15 July 2021. URL: <a href="https://wg21.link/p2290r2">https://wg21.link/p2290r2</a>
   <dt id="biblio-p2295r5">[P2295r5]
   <dd>Corentin Jabot, Peter Brett. <a href="https://wg21.link/p2295r5">Support for UTF-8 as a portable source file encoding</a>. 16 July 2021. URL: <a href="https://wg21.link/p2295r5">https://wg21.link/p2295r5</a>
   <dt id="biblio-p2324r1">[P2324r1]
   <dd>Martin Uecker. <a href="https://wg21.link/p2324r1">Labels at the end of compound statements (C compatibility)</a>. 14 October 2021. URL: <a href="https://wg21.link/p2324r1">https://wg21.link/p2324r1</a>
   <dt id="biblio-p2327r1">[P2327r1]
   <dd>Paul M. Bendixen, Jens Maurer, Arthur O'Dwyer, Ben Saks. <a href="https://wg21.link/p2327r1">De-deprecating volatile compound operations</a>. 4 October 2021. URL: <a href="https://wg21.link/p2327r1">https://wg21.link/p2327r1</a>
   <dt id="biblio-p2348r2">[P2348r2]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2348r2">Whitespaces Wording Revamp</a>. 9 October 2021. URL: <a href="https://wg21.link/p2348r2">https://wg21.link/p2348r2</a>
   <dt id="biblio-p2350r2">[P2350r2]
   <dd>Andreas Fertig. <a href="https://wg21.link/p2350r2">constexpr class</a>. 14 October 2021. URL: <a href="https://wg21.link/p2350r2">https://wg21.link/p2350r2</a>
   <dt id="biblio-p2362r3">[P2362r3]
   <dd>Peter Brett, Corentin Jabot. <a href="https://wg21.link/p2362r3">Remove non-encodable wide character literals and multicharacter wide character literals</a>. 27 August 2021. URL: <a href="https://wg21.link/p2362r3">https://wg21.link/p2362r3</a>
   <dt id="biblio-p2437r0">[P2437r0]
   <dd>Aaron Ballman. <a href="https://wg21.link/p2437r0">Support for #warning</a>. 9 September 2021. URL: <a href="https://wg21.link/p2437r0">https://wg21.link/p2437r0</a>
   <dt id="biblio-p2448r0">[P2448r0]
   <dd>Barry Revzin. <a href="https://wg21.link/p2448r0">Relaxing some constexpr restrictions</a>. 14 October 2021. URL: <a href="https://wg21.link/p2448r0">https://wg21.link/p2448r0</a>
   <dt id="biblio-p2468r1">[P2468r1]
   <dd>Barry Revzin, Bjarne Stroustrup, Cameron DaCamara, Daveed Vandevoorde, Gabriel Dos Reis, Herb Sutter, Jason Merrill, Jonathan Caves, Richard Smith, Ville Voutilainen. <a href="https://wg21.link/p2468r1">The Equality Operator You Are Looking For</a>. 16 December 2021. URL: <a href="https://wg21.link/p2468r1">https://wg21.link/p2468r1</a>
  </dl>