<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

   <meta http-equiv="content-type" content="text/html;charset=UTF-8">

   <style type="text/css">

   /*
CSS stylesheet is based on killwing's flavored markdown style:
https://gist.github.com/2937864
*/
body{
    margin: 0 auto;
    font: 13px/1.231 Helvetica, Arial, sans-serif;
    color: #444444;
    line-height: 1;
    max-width: 960px;
    padding: 5px;
}
h1, h2, h3, h4 {
    color: #111111;
    font-weight: 400;
}
h1, h2, h3, h4, h5, p {
    margin-bottom: 16px;
    padding: 0;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 22px;
    margin: 20px 0 6px;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 16px;
}
a {
    color: #0099ff;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
a:link,a:visited{
 text-decoration:none;
}
a:hover{
 text-decoration:underline;
}
ul, ol {
    padding: 0;
    margin: 0;
}
li {
    line-height: 24px;
    margin-left: 44px;
}
li ul, li ul {
    margin-left: 24px;
}
ul, ol {
    font-size: 14px;
    line-height: 20px;
    max-width: 540px;
}

p {
    font-size: 14px;
    line-height: 20px;
    max-width: 540px;
    margin-top: 3px;
}

pre {
    padding: 0px 4px;
    max-width: 800px;
    white-space: pre-wrap;
    font-family: Consolas, Monaco, Andale Mono, monospace;
    line-height: 1.5;
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    border-radius: 3px;
}
code {
    font-family: Consolas, Monaco, Andale Mono, monospace;
    line-height: 1.5;
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    border-radius: 3px;
}
pre code {
    border: 0px;
}
aside {
    display: block;
    float: right;
    width: 390px;
}
blockquote {
    border-left:.5em solid #40AA53;
    padding: 0 2em;
    margin-left:0;
    max-width: 476px;
}
blockquote  cite {
    font-size:14px;
    line-height:20px;
    color:#bfbfbf;
}
blockquote cite:before {
    content: '\2014 \00A0';
}

blockquote p {  
    color: #666;
    max-width: 460px;
}
hr {
    height: 1px;
    border: none;
    border-top: 1px dashed #0066CC
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button, input {
  line-height: normal;
  *overflow: visible;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  cursor: pointer;
}
/* override default chrome & firefox settings */
input:not([type="image"]), textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
label,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 18px;
}
input[type=checkbox], input[type=radio] {
  cursor: pointer;
  margin-bottom: 0;
}
input[type=text],
input[type=password],
textarea,
select {
  display: inline-block;
  width: 210px;
  padding: 4px;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  color: #808080;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
select, input[type=file] {
  height: 27px;
  line-height: 27px;
}
textarea {
  height: auto;
}

/* grey out placeholders */
:-moz-placeholder {
  color: #bfbfbf;
}
::-webkit-input-placeholder {
  color: #bfbfbf;
}

input[type=text],
input[type=password],
select,
textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* buttons */
button {
  display: inline-block;
  padding: 4px 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #004b9a;
  border-bottom-color: #003f81;
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  transition: 0.1s linear all;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
button:hover {
  color: #fff;
  background-position: 0 -15px;
  text-decoration: none;
}
button:active {
  -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* table  */
table {
    border-spacing: 0;
    border: 1px solid #ccc;
}
td, th{
    border: 1px solid #ccc;
    padding: 5px;
}
/* code syntax highlight.
Documentation: http://www.mdcharm.com/documentation/code_syntax_highlighting.html#custom_your_own
 */
pre .literal,
pre .comment,
pre .template_comment,
pre .diff .header,
pre .javadoc {
    color: #008000;
}

pre .keyword,
pre .css .rule .keyword,
pre .winutils,
pre .javascript .title,
pre .nginx .title,
pre .subst,
pre .request,
pre .status {
    color: #0000FF;
    font-weight: bold
}

pre .number,
pre .hexcolor,
pre .python .decorator,
pre .ruby .constant {
    color: #0000FF;
}

pre .string,
pre .tag .value,
pre .phpdoc,
pre .tex .formula {
    color: #D14
}

pre .title,
pre .id {
    color: #900;
    font-weight: bold
}

pre .javascript .title,
pre .lisp .title,
pre .clojure .title,
pre .subst {
    font-weight: normal
}

pre .class .title,
pre .haskell .type,
pre .vhdl .literal,
pre .tex .command {
    color: #458;
    font-weight: bold
}

pre .tag,
pre .tag .title,
pre .rules .property,
pre .django .tag .keyword {
    color: #000080;
    font-weight: normal
}

pre .attribute,
pre .variable,
pre .lisp .body {
    color: #008080
}

pre .regexp {
    color: #009926
}

pre .class {
    color: #458;
    font-weight: bold
}

pre .symbol,
pre .ruby .symbol .string,
pre .lisp .keyword,
pre .tex .special,
pre .prompt {
    color: #990073
}

pre .built_in,
pre .lisp .title,
pre .clojure .built_in {
    color: #0086b3
}

pre .preprocessor,
pre .pi,
pre .doctype,
pre .shebang,
pre .cdata {
    color: #999;
    font-weight: bold
}

pre .deletion {
    background: #fdd
}

pre .addition {
    background: #dfd
}

pre .diff .change {
    background: #0086b3
}

pre .chunk {
    color: #aaa
}

pre .markdown .header {
    color: #800;
    font-weight: bold;
}

pre .markdown .blockquote {
    color: #888;
}

pre .markdown .link_label {
    color: #88F;
}

pre .markdown .strong {
    font-weight: bold;
}

pre .markdown .emphasis {
    font-style: italic;
}

   </style>

   

   

</head>

<body>

    <h1>WG21 2018-03 Jacksonville Minutes</h1>

<p>ISO/IEC JTC1 SC22 WG21 N4732 — 2018-04-02</p>

<p>Patrice Roy, <a href="mailto:Patrice.Roy@USherbrooke.ca">Patrice.Roy@USherbrooke.ca</a></p>

<p>March 12 - March 17, 2018 - Jacksonville, FL, USA</p>

<p>Chair: John Spicer</p>

<h2>1. Opening activities (Monday 9:00)</h2>

<h3>1.1 Opening comments, welcome from host (PL22.16)</h3>

<p>Spicer welcomes everyone. Hedquist greets attendees and thanks sponsors.</p>

<h3>1.2 Meeting guidelines (PL22.16)</h3>

<p>Every participant is responsible for understanding and abiding by the <a href="http://www.incits.org/standards-information/legal-info">INCITS Antitrust Guidelines</a> and <a href="http://www.incits.org/dotAsset/63b6e457-53b9-4933-9835-7c74e77ca2fd.pdf">Patent Policy</a>
and the [ISO Code of Conduct][isococ].</p>

<h3>1.3 Membership, voting rights, and procedures for the meeting (PL22.16)</h3>

<p>The chair requests that prospective PL22.16 members inform the chair (Spicer) 
or vice-chair (Finkel) that they are present.</p>

<p>Finkel explains the attendance sheet rules and requests people adding
themselves print their names clearly.</p>

<p>Finkel explains new rules to manage the attribution of document numbers for papers.</p>

<h3>1.4 Introductions</h3>

<p>Representatives from the following countries:</p>

<p>Canada
Finland
Germany
Spain
Switzerland
UK
US</p>

<p>France has members but no NB representative</p>

<p>Poland has members but is here as an observer</p>

<h3>1.5 Agenda review and approval (PL22.16 motion)</h3>

<p>Agenda is in a revision of <a href="https://wg21.link/n4716">N4716</a>, posted on the Wiki.</p>

<p>Dawes moved to adopt the agenda, Carruth seconded.</p>

<p>Approved by unanimous consent (for both WG21 and .16 polls).</p>

<p>The WG and SG chairs must arrange for any proposals to be written up in the form of a motion, and made available by 8:00 PM Friday. </p>

<h3>1.6 Editor&#39;s reports, approval of working drafts</h3>

<table><thead>
<tr>
<th>Document</th>
<th align="center">Editor&#39;s Report</th>
<th align="center">Prospective WD</th>
</tr>
</thead><tbody>
<tr>
<td>C++20 Standard</td>
<td align="center"><a href="https://wg21.link/n4728">N4728</a></td>
<td align="center"><a href="https://wg21.link/n4727">N4727</a></td>
</tr>
<tr>
<td>Coroutines TS</td>
<td align="center"><a href="https://wg21.link/n4724">N4724</a></td>
<td align="center"><a href="https://wg21.link/n4723">N4723</a></td>
</tr>
<tr>
<td>Networking TS</td>
<td align="center"><a href="https://wg21.link/n4712">N4712</a></td>
<td align="center"><a href="https://wg21.link/n4711">N4711</a></td>
</tr>
<tr>
<td>Parallelism v2 TS</td>
<td align="center"><a href="https://wg21.link/n4726">N4726</a></td>
<td align="center"><a href="https://wg21.link/n4725">N4725</a></td>
</tr>
</tbody></table>

<p>Approved by unanimous consent.</p>

<h3>1.7 Approval of the minutes of the previous meetings (PL22.16 motion)</h3>

<table><thead>
<tr>
<th>Meeting</th>
<th align="center">Minutes</th>
</tr>
</thead><tbody>
<tr>
<td>WG21 Albuquerque</td>
<td align="center"><a href="https://wg21.link/n4709">N4709</a></td>
</tr>
<tr>
<td>PL22.16 Albuquerque</td>
<td align="center"><a href="https://wg21.link/n4710">N4710</a></td>
</tr>
<tr>
<td>WG21 Modules telecon</td>
<td align="center"><a href="https://wg21.link/n4729">N4729</a></td>
</tr>
<tr>
<td>WG21 pre-Jacksonville administrative telecon</td>
<td align="center"><a href="https://wg21.link/n4730">N4730</a></td>
</tr>
</tbody></table>

<p>Carruth moved to accept the PL22.16 Albuquerque minutes, Clow seconded.
Approved by unanimous consent.</p>

<p>WG21 minutes approved by unanimous consent.</p>

<h2>2. Liaison reports, and WG21 study group reports (see pre-meeting WG21 telecon minutes)</h2>

<p>Already summarized in the pre-meeting minutes</p>

<h2>3. WG progress reports and work plans for the week (Core, Evolution, Library, Library Evolution)</h2>

<p>Already summarized in the pre-meeting minutes</p>

<h2>4. New business requiring action by the committee</h2>

<p>Miller states that issues, tentatively ready or not, have not been presented in paper form as usual due
to an important number of pre-meeting teleconferences, particularly for modules. D0968 contains the
list of tentatively ready issues and is attached to the Core Wiki.</p>

<h2>5. Organize working groups and study groups, establish working procedures</h2>

<p>(Clarify rooms available for evening sessions)</p>

<h2>6. WG and SG sessions</h2>

<p>The WG and SG chairs must arrange for any proposals to be written up in the
form of a motion, and made available by 8:00 PM Friday.</p>

<h2>7. Review of the meeting (Saturday 8:30 AM)</h2>

<p>WG and SG status and progress reports. Presentation and discussion of proposals
to be considered for consensus adoption by full WG21.</p>

<p>Spicer invites SG chairs to make their reports</p>

<p><strong>SG5: Transactional memory (Wong)</strong></p>

<p><strong>SG6: Numerics (Crowl)</strong></p>

<p><strong>SG7: Compile-Time Programming (Carruth)</strong></p>

<p><strong>SG10: Feature test (Nelson)</strong></p>

<p><strong>SG12: Undefined and unspecified behavior (Dos Reis)</strong></p>

<p><strong>SG14: Games &amp; low latency (Wong)</strong></p>

<p><strong>SG15: Tooling (Winters)</strong></p>

<p><strong>SG1: Concurrency (Giroux)</strong></p>

<p><strong>Evolution (Voutilainen)</strong></p>

<p><strong>Library Evolution (Winters)</strong></p>

<p><strong>Core (Miller)</strong></p>

<h4>CWG Motions</h4>

<p><strong>Motion 1</strong></p>

<p>Move to accept as Defect Reports all issues except 2237 in P0968R0 (Core Language Working Group &quot;tentatively ready&quot; Issues for the March, 2018 (Jacksonville) meeting) and apply all the proposed resolutions (including the one for 2237) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 2</strong></p>

<p>Move to apply the changes in P0840R2 (Language support for empty objects) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 3</strong></p>

<p>Move to accept as a Defect Report and apply the changes in P0962R1 (Relaxing the range-for loop customization point finding rules) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 4</strong></p>

<p>Move to accept as a Defect Report and apply the changes in P0969R0 (Allow structured bindings to accessible members) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 5</strong></p>

<p>Move to accept as a Defect Report and apply the changes in P0961R1 (Relaxing the structured bindings customization point finding rules) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 6</strong></p>

<p>Move to apply the changes in P0634R3 (Down with typename!) to the C++ working paper.</p>

<p>Concerns were raised due to possible evolutionary exploration</p>

<p>Objection to unanimous consent</p>

<table><thead>
<tr>
<th align="center">Favor</th>
<th align="center">Opposed</th>
<th align="center">Abstain</th>
</tr>
</thead><tbody>
<tr>
<td align="center">31</td>
<td align="center">6</td>
<td align="center">14</td>
</tr>
</tbody></table>

<p>Motion passed.</p>

<p><strong>Motion 7</strong></p>

<p>Move to apply the changes in P0780R2 (Allow pack expansion in lambda init-capture) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 8</strong></p>

<p>Move to apply the changes in P0479R5 (Proposed wording for likely and unlikely attributes (Revision 5)) to the C++ working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 9</strong></p>

<p>Move to apply the changes in P0905R1 (Symmetry for spaceship) to the C++ working paper.</p>

<p>Adam: I raised a technical objection in EWG and want this noted</p>

<p>Objection to unanimous consent</p>

<table><thead>
<tr>
<th align="center">Favor</th>
<th align="center">Opposed</th>
<th align="center">Abstain</th>
</tr>
</thead><tbody>
<tr>
<td align="center">34</td>
<td align="center">2</td>
<td align="center">17</td>
</tr>
</tbody></table>

<p>Motion passed.</p>

<p><strong>Motion 10</strong></p>

<p>Move to apply the changes in P0914R1 (Add parameter preview to coroutine promise constructor) to the Coroutines TS working paper.</p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 11</strong></p>

<p>Move to apply the changes in P0911R1 (Rebase the Coroutines TS onto the C++17 Standard) to the Coroutines TS working paper. </p>

<p>Approved by unanimous consent</p>

<p><strong>Library (Clow)</strong></p>

<h4>LWG motions</h4>

<h5>Parallelism 2 TS</h5>

<p><strong>Motion 1</strong></p>

<p>Move to apply to the Parallelism 2 TS working paper the proposed wording in P0214R9 (Data-Parallel Vector Types &amp; Operations). </p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 2</strong></p>

<p>Move that we appoint an editing committee of Adlestein Lelbach, Matthias Kretz, Alisdair Meredith, and Marshall Clow, to approve the correctness of the Parallelism 2 TS working draft as modified by the motions approved at this meeting, and to direct the Convener to transmit the approved updated working draft for PTDS. </p>

<p>Approved by unanimous consent</p>

<h5>Reflection TS</h5>

<p><strong>Motion 3</strong></p>

<p>Move to direct the Convener to request a New Work Item for a Technical Specification on &quot;C++ Extensions for Reflection&quot; and create a working draft with [ P0194R6 &quot;Static reflection&quot; ] as its initial content</p>

<p>Approved by unanimous consent</p>

<h5>Coroutines TS</h5>

<p><strong>Motion 4</strong></p>

<p>Move to apply to the Coroutines TS working paper the proposed wording in P0913R1 (Add symmetric coroutine control transfer). </p>

<p>Approved by unanimous consent</p>

<h5>Networking TS</h5>

<p><strong>Motion 5</strong></p>

<p>Move to apply to the Networking TS working paper the proposed resolutions of issues 3002, 3010 and 3020 in P0888R0 (C++ Standard Library Issues to be moved in Jacksonville). </p>

<p>Approved by unanimous consent</p>

<h5>Library Fundamentals TS</h5>

<p><strong>Motion 6</strong></p>

<p>Move to direct the Convener to request a New Work Item for a Technical Specification on &quot;C++ Extensions for Library Fundamentals, Version 3&quot; and create a working draft with P0996R1 modifying Library Fundamentals Version 2 N4600 </p>

<p>Approved by unanimous consent</p>

<h5>Issues</h5>

<p><strong>Motion 7</strong></p>

<p>Move to apply to the C++ working paper the proposed resolutions of all of the issues except 3002, 3010 and 3020 in P0888R0 (C++ Standard Library Issues to be moved in Jacksonville). </p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 8</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P1003R0 (C++ Standard Library Issues Resolved Directly In Jacksonville). </p>

<p>Approved by unanimous consent</p>

<h5>Working Draft</h5>

<p><strong>Motion 9</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0754R2 (<version>). </p>

<p>Concerns were raised due to the lack of information as to which symbols will be obtained from the <version> header</p>

<table><thead>
<tr>
<th align="center">Favor</th>
<th align="center">Opposed</th>
<th align="center">Abstain</th>
</tr>
</thead><tbody>
<tr>
<td align="center">45</td>
<td align="center">2</td>
<td align="center">5</td>
</tr>
</tbody></table>

<p>Motion passed.</p>

<p><strong>Motion 10</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0809R0 (Comparing Unordered Containers). This resolves LWG#2831 </p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 11</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0355R7 (Extending chrono to Calendars and Time Zones) </p>

<p>Approved by unanimous consent (applause!)</p>

<p><strong>Motion 12</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0966R1 (string::reserve Should Not Shrink). </p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 13</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0551R3 (Thou Shalt Not Specialize std Function Templates!). </p>

<p>Concerns were raised with respect to potential breakage of existing code</p>

<table><thead>
<tr>
<th align="center">Favor</th>
<th align="center">Opposed</th>
<th align="center">Abstain</th>
</tr>
</thead><tbody>
<tr>
<td align="center">39</td>
<td align="center">2</td>
<td align="center">13</td>
</tr>
</tbody></table>

<p>Motion passed.</p>

<p><strong>Motion 14</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0753R2 (Manipulators for C++ Synchronized Buffered Ostream). </p>

<p>Approved by unanimous consent</p>

<p><strong>Motion 15</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0122R7 (<span>). </p>

<p>Concerns were raised with respect to the introduction of a new type without LEWG review</p>

<p>Objection to unanimous consent</p>

<table><thead>
<tr>
<th align="center">Favor</th>
<th align="center">Opposed</th>
<th align="center">Abstain</th>
</tr>
</thead><tbody>
<tr>
<td align="center">36</td>
<td align="center">1</td>
<td align="center">18</td>
</tr>
</tbody></table>

<p>Motion passed.</p>

<p><strong>Motion 16</strong></p>

<p>Move to apply to the C++ working paper the proposed wording in P0858R0 (Constexpr iterator requirements). </p>

<p>Approved by unanimous consent</p>

<h2>8. Closing activities (Saturday 10:53 AM)</h2>

<h3>8.1 PL22.16 motions, if any</h3>

<p>None.</p>

<h3>8.2 Issues delayed until today</h3>

<p>None.</p>

<h2>9. Plans for the future (PL22.16)</h2>

<h3>9.1 Next and following meetings</h3>

<p>Retirement of Beman Dawes leads to standing ovation</p>

<ul>
<li>2018-06-04/09: Rapperswil, CH (<a href="https://wg21.link/n4673">N4673</a>)</li>
<li>2018-11-05/10: San Diego, CA, US (<a href="https://wg21.link/n4715">N4715</a>)</li>
</ul>

<h3>9.2 Mailings</h3>

<ul>
<li>2018-04-02: Post-Jacksonville</li>
<li>2018-05-07: Pre-Rapperswil</li>
</ul>

<p>Deadline for papers is 14:00 UTC.</p>

<p>Brown: I want to move to thank the host &gt;applause&lt;.</p>

<p>Hedquist: I want to thank Jens Maurer for his logistics support, as well as the C++ Foundation</p>

<p>Brown: I would also like us to thank the following :</p>

<ul>
<li>The officers and convener,</li>
<li>The project editors (and their minions),</li>
<li>The WG and SG chairs,</li>
<li>The note-takers/scribes,</li>
<li>The paper authors and their reviewers,</li>
<li>Those who pay for our participation,
and</li>
<li>Our loved ones, who do without us as we labor on C++!</li>
</ul>

<h2>10. Adjournment (PL22.16 motion)</h2>

<p>Adam Martin moved to adjourn. Marshal Clow seconded.</p>

<p>Plenary concludes at 12:01 PM</p>

<h2>11. Attendance</h2>

<p>The column &quot;WG21&quot; designates official PL22.16 or WG21 status (&quot;P&quot;, &quot;A&quot;, &quot;E&quot;, &quot;M&quot;)</p>

<p>The column &quot;PL22.16&quot; indicates organizations eligible to vote by &quot;V&quot;, and advisory membership by &quot;A&quot;.</p>

<h3>PL22.16 members</h3>

<table><thead>
<tr>
<th>Company / Organization</th>
<th align="center">NB</th>
<th>Representative</th>
<th align="center">WG21</th>
<th align="center">PL22.16</th>
</tr>
</thead><tbody>
<tr>
<td>AMD</td>
<td align="center"></td>
<td>Siu Chi Chan</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>AMD</td>
<td align="center"></td>
<td>Tony Tye</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>AMD</td>
<td align="center"></td>
<td>Alexandru Voicu</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Amazon</td>
<td align="center"></td>
<td>Louis Dionne</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Amazon</td>
<td align="center"></td>
<td>John McFarlane</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Apple</td>
<td align="center"></td>
<td>Alex Christensen</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Apple</td>
<td align="center"></td>
<td>Bruno Lopes</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Apple</td>
<td align="center"></td>
<td>Tim Northover</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Argonne National Lab</td>
<td align="center"></td>
<td>Hal Finkel</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>John Lakos</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center">UK</td>
<td>Dietmar Kühl</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center">UK</td>
<td>Alisdair Meredith</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>David Sankel</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>Frank Birbacher</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>Jeffrey Mendeksohn</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>Vittorio Romeo</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Bloomberg</td>
<td align="center"></td>
<td>Georg Rudoy</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Brown</td>
<td align="center"></td>
<td>Walter E. Brown</td>
<td align="center">E</td>
<td align="center"></td>
</tr>
<tr>
<td>Cisco Systems</td>
<td align="center"></td>
<td>Lars Gullik Bjønnes</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Dinkumware Ltd</td>
<td align="center"></td>
<td>P.J. Plauger</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Dinkumware Ltd</td>
<td align="center"></td>
<td>Tana Plauger</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>EPAM Systems Inc</td>
<td align="center"></td>
<td>Mateusz Pusz</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Edison Design Group</td>
<td align="center"></td>
<td>John Spicer</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Edison Design Group</td>
<td align="center"></td>
<td>Daveed Vandevoorde</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Edison Design Group</td>
<td align="center"></td>
<td>Jens Maurer</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Edison Design Group</td>
<td align="center"></td>
<td>William M. Miller</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>Lee Howes</td>
<td align="center">A</td>
<td align="center">V</td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>Maged Michael</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>Eric Niebler</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>David Goldblatt</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>Nathan Sidwell</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Facebook</td>
<td align="center"></td>
<td>Victor Zverovich</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>FlightSafety International</td>
<td align="center"></td>
<td>Billy Baker</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Chandler Carruth</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Hans Boehm</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>James Dennett</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Geoffrey Romer</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center">UK</td>
<td>Richard Smith</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Titus Winters</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Ashley Hedberg</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Andrew Hunter</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Chris Kennelly</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Thomas Koeppe</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Chris Mysen</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Google</td>
<td align="center"></td>
<td>Tim Shen</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>GrammaTech Inc,</td>
<td align="center"></td>
<td>Aaron Ballman</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>GreenWireSoft</td>
<td align="center"></td>
<td>Juan Alday</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>IBM</td>
<td align="center"></td>
<td>Paul E. McKenney</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Intel</td>
<td align="center"></td>
<td>Clark Nelson</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Intel</td>
<td align="center"></td>
<td>Pablo Halpern</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Intel</td>
<td align="center"></td>
<td>Erich Keane</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Intel</td>
<td align="center"></td>
<td>Axel Wells</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>LTK Engineering</td>
<td align="center"></td>
<td>Alan Talbot</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Linden Research, Inc.</td>
<td align="center"></td>
<td>Nat Goodspeed</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Los Alamos National Laboratory</td>
<td align="center"></td>
<td>S. Davis Herring</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Jonathan Caves</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Casey Carter</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Stephan Lavavej</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Gor Nishanov</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Andrew Pardoe</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Gabriel Dos Reis</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Microsoft</td>
<td align="center"></td>
<td>Herb Sutter</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>MongoDB</td>
<td align="center"></td>
<td>Adam Martin</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>MongoDB</td>
<td align="center"></td>
<td>Jason Carey</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Morgan Stanley</td>
<td align="center"></td>
<td>Bjarne Stroustrup</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>NVidia</td>
<td align="center"></td>
<td>Bryce Adelstein-Lelbach</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>NVidia</td>
<td align="center"></td>
<td>Michael Garland</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>NVidia</td>
<td align="center"></td>
<td>Olivier Giroux</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>NVidia</td>
<td align="center"></td>
<td>Jared Hoberock</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Oak Ridge National Laboratory</td>
<td align="center"></td>
<td>Graham Lopez</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Ocient</td>
<td align="center"></td>
<td>Nevin Liber</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Oracle</td>
<td align="center"></td>
<td>Paolo Carlini</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Perennial</td>
<td align="center"></td>
<td>Barry Hedquist</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Perennial</td>
<td align="center"></td>
<td>Lawrence Crowl</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Perennial</td>
<td align="center"></td>
<td>Beman G. Dawes</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Plum Hall</td>
<td align="center"></td>
<td>Thomas Plum</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Programming Research Group</td>
<td align="center"></td>
<td>Christof Meerwald</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Qualcomm</td>
<td align="center"></td>
<td>Marshall Clow</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Red Hat</td>
<td align="center"></td>
<td>Jason Merrill</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Red Hat</td>
<td align="center"></td>
<td>Torvald Riegel</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Red Hat</td>
<td align="center"></td>
<td>Thomas Rodgers</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Ripple Labs</td>
<td align="center"></td>
<td>Howard E. Hinnant</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Ripple Labs</td>
<td align="center"></td>
<td>Stephen Schurr</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Saks &amp; Associates</td>
<td align="center"></td>
<td>Benjamin Saks</td>
<td align="center">P</td>
<td align="center"></td>
</tr>
<tr>
<td>Sandia National Labs</td>
<td align="center"></td>
<td>Daniel Sunderland</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Sandia National Labs</td>
<td align="center"></td>
<td>Mark Hoemmen</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Sandia National Labs</td>
<td align="center"></td>
<td>David Hollman</td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td>Schonfeld Tools LLC</td>
<td align="center"></td>
<td>Wesley Maness</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Seymour</td>
<td align="center"></td>
<td>William Seymour</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Stellar Science</td>
<td align="center"></td>
<td>Kelly Walker</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Symantec</td>
<td align="center"></td>
<td>Mike Spertus</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Synopsys</td>
<td align="center"></td>
<td>Thierry Lavoie</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>Synopsys</td>
<td align="center"></td>
<td>Tom Honermann</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>Synopsys</td>
<td align="center"></td>
<td>Michael Price</td>
<td align="center">A</td>
<td align="center"></td>
</tr>
<tr>
<td>University of Akron</td>
<td align="center"></td>
<td>Andrew Sutton</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
<tr>
<td>VMware Inc</td>
<td align="center"></td>
<td>Mark Zeren</td>
<td align="center">P</td>
<td align="center">V</td>
</tr>
</tbody></table>

<h3>Other WG21 members</h3>

<table><thead>
<tr>
<th>Company / Organization</th>
<th align="center">NB</th>
<th>Representative</th>
<th align="center">WG21</th>
</tr>
</thead><tbody>
<tr>
<td>BDS</td>
<td align="center">BG</td>
<td>Vasil Vasilev</td>
<td align="center">M</td>
</tr>
<tr>
<td></td>
<td align="center">CA</td>
<td>Bryan St, Amour</td>
<td align="center">M</td>
</tr>
<tr>
<td>Apple</td>
<td align="center">CA</td>
<td>JF Bastien</td>
<td align="center">M</td>
</tr>
<tr>
<td>Canada Seneca</td>
<td align="center">CA</td>
<td>Chris Szarwinski</td>
<td align="center">M</td>
</tr>
<tr>
<td>Christie Digital</td>
<td align="center">CA</td>
<td>Tony Van Eerd</td>
<td align="center">M</td>
</tr>
<tr>
<td>Codeplay</td>
<td align="center">CA</td>
<td>Michael Wong</td>
<td align="center">M</td>
</tr>
<tr>
<td>IBM</td>
<td align="center">CA</td>
<td>Shuo Feng Liu</td>
<td align="center">M</td>
</tr>
<tr>
<td>IBM</td>
<td align="center">CA</td>
<td>Hubert Tong</td>
<td align="center">M</td>
</tr>
<tr>
<td>Mozilla</td>
<td align="center">CA</td>
<td>Botond Ballo</td>
<td align="center">M</td>
</tr>
<tr>
<td>Christie Digital</td>
<td align="center">CA</td>
<td>Tony Van Eerd</td>
<td align="center">M</td>
</tr>
<tr>
<td>University of Windsor</td>
<td align="center">CA</td>
<td>Paul Preney</td>
<td align="center">M</td>
</tr>
<tr>
<td>Université de Sherbrooke</td>
<td align="center">CA</td>
<td>Patrice Roy</td>
<td align="center">M</td>
</tr>
<tr>
<td>CERN</td>
<td align="center">CH</td>
<td>Axel Naumann</td>
<td align="center">M</td>
</tr>
<tr>
<td>HSR</td>
<td align="center">CH</td>
<td>Peter Sommerlad</td>
<td align="center">M</td>
</tr>
<tr>
<td>Vollmann Engineering</td>
<td align="center">CH</td>
<td>Detlef Vollmann</td>
<td align="center">M</td>
</tr>
<tr>
<td></td>
<td align="center">DE</td>
<td>Fabio Fracassi</td>
<td align="center">M</td>
</tr>
<tr>
<td></td>
<td align="center">DE</td>
<td>Nicolai Josuttis</td>
<td align="center">M</td>
</tr>
<tr>
<td>GSI</td>
<td align="center">DE</td>
<td>Matthias Kretz</td>
<td align="center">M</td>
</tr>
<tr>
<td>University Carlos III</td>
<td align="center">ES</td>
<td>J. Daniel García</td>
<td align="center">M</td>
</tr>
<tr>
<td>CryptoTec</td>
<td align="center">FI</td>
<td>Mikael Kilpeläinen</td>
<td align="center">M</td>
</tr>
<tr>
<td>Plum Hall</td>
<td align="center">FI</td>
<td>Ville Voutilainen</td>
<td align="center">A</td>
</tr>
<tr>
<td></td>
<td align="center">UK</td>
<td>Roger Orr</td>
<td align="center">M</td>
</tr>
<tr>
<td>ARM</td>
<td align="center">UK</td>
<td>Will Deacon</td>
<td align="center">M</td>
</tr>
<tr>
<td>Jetbrains</td>
<td align="center">UK</td>
<td>Timur Doumler</td>
<td align="center">M</td>
</tr>
<tr>
<td>PDT Partners</td>
<td align="center">UK</td>
<td>Jeff Snyder</td>
<td align="center">M</td>
</tr>
<tr>
<td></td>
<td align="center">UK</td>
<td>Dinka Ranns</td>
<td align="center">M</td>
</tr>
<tr>
<td>Nokia</td>
<td align="center">PL</td>
<td>Michał Dominiak</td>
<td align="center">M</td>
</tr>
</tbody></table>

<h3>Participating non-members</h3>

<table><thead>
<tr>
<th>Company / Organization</th>
<th align="center">NB</th>
<th>Representative</th>
</tr>
</thead><tbody>
<tr>
<td></td>
<td align="center"></td>
<td>Nicolas Lesser</td>
</tr>
<tr>
<td></td>
<td align="center"></td>
<td>Faisal Vali</td>
</tr>
<tr>
<td></td>
<td align="center"></td>
<td>Gevorg Voskanyan</td>
</tr>
<tr>
<td></td>
<td align="center"></td>
<td>Michael Young</td>
</tr>
<tr>
<td>Blizzard</td>
<td align="center"></td>
<td>James Touton</td>
</tr>
<tr>
<td>DePaul University</td>
<td align="center"></td>
<td>Zhihao Yuan</td>
</tr>
<tr>
<td>Jump Trading</td>
<td align="center"></td>
<td>Barry Revzin</td>
</tr>
<tr>
<td>KEWB Computing</td>
<td align="center"></td>
<td>Bob Steagall</td>
</tr>
<tr>
<td>Maystreet</td>
<td align="center"></td>
<td>Nathan Myers</td>
</tr>
<tr>
<td>National Instruments</td>
<td align="center"></td>
<td>Ben Craig</td>
</tr>
<tr>
<td>Nokia</td>
<td align="center"></td>
<td>Vicente J. Botet Escriba</td>
</tr>
<tr>
<td>Paris Observatory</td>
<td align="center"></td>
<td>Vincent Reverdy</td>
</tr>
<tr>
<td>RKR Capital</td>
<td align="center"></td>
<td>Robert Douglas</td>
</tr>
<tr>
<td>Sony Computer Entertainment</td>
<td align="center"></td>
<td>Michael Spencer</td>
</tr>
<tr>
<td>Tanium</td>
<td align="center"></td>
<td>Lisa Lippincott</td>
</tr>
<tr>
<td>think-cell</td>
<td align="center"></td>
<td>Tony Lewis</td>
</tr>
<tr>
<td>Xilinx</td>
<td align="center"></td>
<td>Ronan Keryell</td>
</tr>
</tbody></table>


</body>

</html>