-
Notifications
You must be signed in to change notification settings - Fork 769
/
Copy pathn4714.html
732 lines (513 loc) · 28.5 KB
/
n4714.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
<!DOCTYPE html><html><head><meta charset="utf-8"><style>html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body{
color:#444;
font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman',
"Hiragino Sans GB", "STXihei", "微软雅黑", serif;
font-size:12px;
line-height:1.5em;
background:#fefefe;
width: 45em;
margin: 10px auto;
padding: 1em;
outline: 1300px solid #FAFAFA;
}
a{ color: #0645ad; text-decoration:none;}
a:visited{ color: #0b0080; }
a:hover{ color: #06e; }
a:active{ color:#faa700; }
a:focus{ outline: thin dotted; }
a:hover, a:active{ outline: 0; }
span.backtick {
border:1px solid #EAEAEA;
border-radius:3px;
background:#F8F8F8;
padding:0 3px 0 3px;
}
::-moz-selection{background:rgba(255,255,0,0.3);color:#000}
::selection{background:rgba(255,255,0,0.3);color:#000}
a::-moz-selection{background:rgba(255,255,0,0.3);color:#0645ad}
a::selection{background:rgba(255,255,0,0.3);color:#0645ad}
p{
margin:1em 0;
}
img{
max-width:100%;
}
h1,h2,h3,h4,h5,h6{
font-weight:normal;
color:#111;
line-height:1em;
}
h4,h5,h6{ font-weight: bold; }
h1{ font-size:2.5em; }
h2{ font-size:2em; border-bottom:1px solid silver; padding-bottom: 5px; }
h3{ font-size:1.5em; }
h4{ font-size:1.2em; }
h5{ font-size:1em; }
h6{ font-size:0.9em; }
blockquote{
color:#666666;
margin:0;
padding-left: 3em;
border-left: 0.5em #EEE solid;
}
hr { display: block; height: 2px; border: 0; border-top: 1px solid #aaa;border-bottom: 1px solid #eee; margin: 1em 0; padding: 0; }
pre , code, kbd, samp {
color: #000;
font-family: monospace;
font-size: 0.88em;
border-radius:3px;
background-color: #F8F8F8;
border: 1px solid #CCC;
}
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 5px 12px;}
pre code { border: 0px !important; padding: 0;}
code { padding: 0 3px 0 3px; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
ul, ol { margin: 1em 0; padding: 0 0 0 2em; }
li p:last-child { margin:0 }
dd { margin: 0 0 0 2em; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
@media only screen and (min-width: 480px) {
body{font-size:14px;}
}
@media only screen and (min-width: 768px) {
body{font-size:16px;}
}
@media print {
* { background: transparent !important; color: black !important; filter:none !important; -ms-filter: none !important; }
body{font-size:12pt; max-width:100%; outline:none;}
a, a:visited { text-decoration: underline; }
hr { height: 1px; border:0; border-bottom:1px solid black; }
a[href]:after { content: " (" attr(href) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
pre, blockquote { border: 1px solid #999; padding-right: 1em; page-break-inside: avoid; }
tr, img { page-break-inside: avoid; }
img { max-width: 100% !important; }
@page :left { margin: 15mm 20mm 15mm 10mm; }
@page :right { margin: 15mm 10mm 15mm 20mm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
}
</style><title>N4714</title></head><body>
<h1>N4714 Editors' Report -- Programming Languages -- C++</h1>
<p>2017-11-27 <br />
Richard Smith (editor) (Google Inc) <br />
Dawn Perchik (co-editor) (Embarcadero Technologies Inc) <br />
Thomas Köppe (co-editor) (Google DeepMind) <br />
<code><[email protected]></code></p>
<h2>Acknowledgements</h2>
<p>Special thanks to
Jens Maurer
for performing many of the editorial fixes since N4700.</p>
<p>Thanks to all those who have <a href="https://github.com/cplusplus/draft/wiki/How-to-submit-an-editorial-issue">submitted editorial
issues</a>
and to those who have provided pull requests with fixes.</p>
<h2>New papers</h2>
<ul>
<li><a href="http://wg21.link/n4713">N4713</a> is the current working draft for C++20. It replaces <a href="http://wg21.link/n4700">N4700</a>.</li>
<li>N4714 is this Editors' Report.</li>
</ul>
<h2>Motions incorporated into working draft</h2>
<h3>Core working group motions</h3>
<p>CWG motion 1: <a href="http://wg21.link/p0817r0">Core issue resolution</a> for 1 issue in "ready" status applied:</p>
<ul>
<li><a href="http://wg21.link/cwg2342">2342</a> Reference <code>reinterpret_cast</code> and pointer-interconvertibility</li>
</ul>
<p>CWG motion 2: <a href="http://wg21.link/p0818r1">Core issue resolutions</a> for 7 issues in "tentatively ready" status applied:</p>
<ul>
<li><a href="http://wg21.link/cwg1862">1862</a> Determining "corresponding members" for friendship</li>
<li><a href="http://wg21.link/cwg2177">2177</a> Placement <code>operator delete</code> and parameter copies</li>
<li><a href="http://wg21.link/cwg2305">2305</a> Explicit instantiation of <code>constexpr</code> or <code>inline</code> variable template</li>
<li><a href="http://wg21.link/cwg2307">2307</a> Unclear definition of "equivalent to a nontype template parameter"</li>
<li><a href="http://wg21.link/cwg2313">2313</a> Redeclaration of structured binding reference variables</li>
<li><a href="http://wg21.link/cwg2315">2315</a> What is the "corresponding special member" of a variant member?</li>
<li><a href="http://wg21.link/cwg2338">2338</a> Undefined behavior converting to short enums with fixed underlying types</li>
</ul>
<p>CWG motion 3: <a href="http://wg21.link/p0614r1">P0614R1 "Range-based <code>for</code> statements with initializer"</a></p>
<p>CWG motion 4: <a href="http://wg21.link/p0588r1">P0588R1 "Simplifying implicit lambda capture"</a></p>
<p>CWG motion 5: <a href="http://wg21.link/p0846r0">P0846R0 "ADL and function templates that are not visible"</a></p>
<p>CWG motion 6: <a href="http://wg21.link/p0641r2">P0641R2 "Resolving core issue #1331"</a>, resolving 1 core issue:</p>
<ul>
<li><a href="http://wg21.link/cwg1331">1331</a> <code>const</code> mismatch with defaulted copy constructor</li>
</ul>
<p>CWG motion 7: <a href="http://wg21.link/p0859r0">P0859R0 "Core issue 1581"</a>, resolving 1 core issue:</p>
<ul>
<li><a href="http://wg21.link/cwg1581">1581</a> When are <code>constexpr</code> member functions defined?</li>
</ul>
<p>CWG motion 8: <a href="http://wg21.link/p0515r3">P0515R3 "Consistent comparison"</a> and <a href="http://wg21.link/p0768r1">P0768R1 "Library support for the spaceship (comparison) operator"</a></p>
<p>CWG motion 9: <a href="http://wg21.link/p0857r0">P0857R0 "Functionality gaps in constraints"</a></p>
<p>CWG motion 10: <a href="http://wg21.link/p0692r1">P0692R1 "Access checking on specializations"</a></p>
<p>CWG motion 11: <a href="http://wg21.link/p0624r2">P0624R2 "Default constructible and assignable stateless lambdas"</a></p>
<p>CWG motion 12: <a href="http://wg21.link/p0767r1">P0767R1 "Deprecate POD"</a></p>
<p>CWG motion 13: <a href="http://wg21.link/p0315r4">P0315R4 "Lambdas in unevaluated contexts"</a></p>
<h3>Library working group motions</h3>
<p>LWG motion 1 and 2 apply to the Parallelism TS.</p>
<p>LWG motion 3 applies to the Networking TS.</p>
<p>LWG motion 4: <a href="http://wg21.link/p0815r0">Library issue resolutions</a> for 24 issues in "Ready" or "Tentatively Ready" status applied:</p>
<ul>
<li><a href="http://wg21.link/lwg2870">2870</a> Default value of parameter <code>theta</code> of <code>polar</code> should be dependent</li>
<li><a href="http://wg21.link/lwg2935">2935</a> What should <code>create_directories</code> do when <code>p</code> already exists but is not a directory?</li>
<li><a href="http://wg21.link/lwg2941">2941</a> [thread.req.timing] wording should apply to both member and namespace-level functions</li>
<li><a href="http://wg21.link/lwg2944">2944</a> <a href="http://wg21.link/lwg2905">LWG 2905</a> accidentally removed requirement that construction of the deleter doesn't throw an exception</li>
<li><a href="http://wg21.link/lwg2945">2945</a> Order of template parameters in <code>optional</code> comparisons</li>
<li><a href="http://wg21.link/lwg2948">2948</a> <code>unique_ptr</code> does not define <code>operator<<</code> for stream output</li>
<li><a href="http://wg21.link/lwg2950">2950</a> <code>std::byte</code> operations are misspecified</li>
<li><a href="http://wg21.link/lwg2952">2952</a> <code>iterator_traits</code> should work for pointers to <em>cv</em> <code>T</code></li>
<li><a href="http://wg21.link/lwg2953">2953</a> <a href="http://wg21.link/lwg2853">LWG 2853</a> should apply to <code>deque::erase</code> too</li>
<li><a href="http://wg21.link/lwg2964">2964</a> Apparently redundant requirement for <code>dynamic_pointer_cast</code></li>
<li><a href="http://wg21.link/lwg2965">2965</a> Non-existing <code>path::native_string()</code> in <code>filesystem_error::what()</code> specification</li>
<li><a href="http://wg21.link/lwg2972">2972</a> What is <code>is_trivially_destructible_v<int></code>?</li>
<li><a href="http://wg21.link/lwg2976">2976</a> Dangling <code>uses_allocator</code> specialization for <code>packaged_task</code></li>
<li><a href="http://wg21.link/lwg2977">2977</a> <code>unordered_</code><em>meow</em><code>::merge()</code> has incorrect <strong>Throws:</strong> clause</li>
<li><a href="http://wg21.link/lwg2978">2978</a> Hash support for <code>pmr::string</code> and friends</li>
<li><a href="http://wg21.link/lwg2979">2979</a> <code>aligned_union</code> should require complete object types</li>
<li><a href="http://wg21.link/lwg2980">2980</a> Cannot <code>compare_exchange</code> empty pointers</li>
<li><a href="http://wg21.link/lwg2981">2981</a> Remove redundant deduction guides from standard library</li>
<li><a href="http://wg21.link/lwg2982">2982</a> Making <code>size_type</code> consistent in associative container deduction guides</li>
<li><a href="http://wg21.link/lwg2988">2988</a> Clause 32 cleanup missed one <code>typename</code></li>
<li><a href="http://wg21.link/lwg2993">2993</a> <code>reference_wrapper<T></code> conversion from <code>T&&</code></li>
<li><a href="http://wg21.link/lwg2998">2998</a> Requirements on function objects passed to {<code>forward_</code>,}<code>list</code>-specific algorithms</li>
<li><a href="http://wg21.link/lwg3001">3001</a> <code>weak_ptr::element_type</code> needs <code>remove_extent_t</code></li>
<li><a href="http://wg21.link/lwg3024">3024</a> <code>variant</code>'s copies must be deleted instead of disabled via SFINAE</li>
</ul>
<p>LWG motion 5: <a href="http://wg21.link/p0864r0">Library issue resolution</a> for 1 issue in "Immediate" status applied:</p>
<ul>
<li><a href="http://wg21.link/2958">2958</a> Moves improperly defined as deleted</li>
</ul>
<p>LWG motion 6: <a href="http://wg21.link/p0550r2">P0550R2 "Transformation trait <code>remove_cvref</code>"</a></p>
<p>LWG motion 7: <a href="http://wg21.link/p0777r1">P0777R1 "Treating unnecessary <code>decay</code>"</a></p>
<p>LWG motion 8: <a href="http://wg21.link/p0600r1">P0600R1 "<code>[[nodiscard]]</code> in the Library"</a></p>
<p>Do not try and apply LWG motion 9 to the working draft. That's impossible.
Instead, only realize the truth. There is no LWG motion 9.</p>
<p>LWG motion 10: <a href="http://wg21.link/p0439r0">P0439R0 "Make <code>std::memory_order</code> a scoped enumeration"</a></p>
<p>LWG motion 11: <a href="http://wg21.link/p0053r7">P0053R7 "Synchronized buffered <code>ostream</code>"</a></p>
<p>LWG motion 12: <a href="http://wg21.link/p0653r2">P0653R2 "Utility to convert a pointer to a raw pointer"</a></p>
<p>LWG motion 13: <a href="http://wg21.link/p0202r3">P0202R3 "Add <code>constexpr</code> modifiers to functions in <code><algorithm></code> and <code><utility></code> Headers"</a></p>
<p>LWG motion 14: <a href="http://wg21.link/p0415r1">P0415R1 "<code>constexpr</code> for <code>std::complex</code>"</a></p>
<p>LWG motion 15: <a href="http://wg21.link/p0718r2">P0718R2 "Atomic <code>shared_ptr</code>"</a></p>
<p>LWG motion 16: <a href="http://wg21.link/p0020r6">P0020R6 "Floating point atomic"</a></p>
<p>LWG motion 17: <a href="http://wg21.link/p0616r0">P0616R0 "De-pessimize legacy <code><numeric></code> algorithms with <code>std::move</code>"</a></p>
<p>LWG motion 18: <a href="http://wg21.link/p0457r2">P0457R2 "String prefix and suffix checking"</a></p>
<h2>Notable editorial changes</h2>
<h3>CWG motion 8</h3>
<p>Instead of removing [operators] and adding a new section to [requirements], the
existing stable name for this section is preserved. This section was moved to
[description] rather than to [requirements], as it describes a notational
device used for standard exposition.</p>
<p>[alg.3way] added to [alg.sorting] rather than [alg.nonmodifying] to
match existing <code>lexicographical_compare</code> functions.</p>
<h3>LWG motion 8</h3>
<p><code>[[nodiscard]]</code> was inadvertantly omitted from <code>deque::empty()</code> in the detailed
wording changes (but was covered by the general description of the change).
After consultation with LWG, this oversight has been corrected in the wording.</p>
<h3>LWG motion 10</h3>
<p>All references to the existing <code>memory_order_*</code> enumerators throughout the
working draft were updated to use the new scoped enumerator nmaes.</p>
<h3>LWG motion 11</h3>
<p>Changes were made to the organization and presentation of the wording
to fit better into the existing document.</p>
<h3>LWG motion 12</h3>
<p>The requested addition to [pointer.traits.function] has been moved into a new
subclause "Pointer traits optional members" and modified slightly to fit this
new presentation, as it does not describe a member of the <code>pointer_traits</code>
primary template.</p>
<h3>Text reorganization</h3>
<p>In an effort to conform to ISO drafting directives to avoid hanging paragraphs
(text in subclauses that also contain further nested subclauses) and to remove
excessive subclause structure, the following changes have been made:</p>
<ul>
<li>[intro] and [basic] have been reorganized so that [intro] acts as an
introduction to the standard document and [basic] introduces the basic
concepts of the standard in an order closer to dependency order</li>
<li>[conv.rank] moved from [conv] to [basic.types], as it does not describe a conversion.</li>
<li>[expr] has additional subclause structure to partially resolve hanging
paragraphs and generally improve its organization</li>
<li>[expr] has a new subclause describing properties of expressions, containing
some of the prior hanging paragraphs from [expr], as well as [basic.lval]</li>
<li>[array], [util.sharedptr] Per-function subclauses have been merged into parent subclause.</li>
</ul>
<h3>Changes in the style of specification</h3>
<ul>
<li><p>Code font is no longer used when referring to non-syntax properties of entities
(even when those properties are derived from syntax). This applies to the terms
"inline", "friend", "public", "protected", "private", "const object".
We generally intend to use code font only when referring specifically
to program syntax.</p></li>
<li><p>In library wording, template headers are formatted consistently with no
space between the <code>template</code> keyword and the <code><</code> token.</p></li>
</ul>
<p>Drafting for future standard changes should take the above into account.</p>
<h3>Index of library headers</h3>
<p>In order to keep the "Index of library names" focused on listing library names,
index entries for library headers have been moved to a separate, new "Index of
library headers".</p>
<h2>Minor editorial fixes</h2>
<p>A log of editorial fixes made to the working draft since N4700 is below.
This list excludes changes
that do not affect the body text or only affect whitespace or typeface. For a
complete list including such changes (or for the actual deltas applied by these
changes), consult the <a href="https://github.com/cplusplus/draft/compare/n4700...n4713">draft sources on github</a>.</p>
<pre><code>commit 903df06f3e67c9a52539892cb6844b55392c5331
Author: Thomas Köppe <[email protected]>
Date: Mon Nov 27 22:00:03 2017 +0000
[allocator.adaptor.syn] Delete duplicate declarations of relational operators
commit cebfe0a09fb56ec33726559c8b6d006dc19e4ab7
Author: Jens Maurer <[email protected]>
Date: Wed Nov 15 23:18:22 2017 +0100
[temp.constr.order] In definition of 'subsumes', remove
confusing introductory paragraph.
commit 74df95e9e3fad1aa5844c281614bbfffb1cc6189
Author: Jens Maurer <[email protected]>
Date: Wed Nov 22 23:45:18 2017 +0100
[diff] Introduce numbered paragraphs
commit e543af304e195ad301da272caa7ef12107077ac0
Author: Jens Maurer <[email protected]>
Date: Sat Nov 25 00:01:36 2017 +0100
[lib] Harmonize spacing for template headers.
Use 'template<class T>'.
Also remove space between two closing template brackets.
commit b73e56f7a2b92449d9ec4938b01fa7014edad33a
Author: Jens Maurer <[email protected]>
Date: Wed Nov 15 23:26:11 2017 +0100
[basic.link] Entities declared in an unnamed namespace
never have external linkage.
commit fc16d3133817701a780092cf6456722a40e27d28
Author: Jens Maurer <[email protected]>
Date: Sun Nov 19 23:11:51 2017 +0100
[temp.arg.explicit] Remove note obsoleted by P0846R0
commit d29bd8c6591fe74b095e5bd277f986462ba40b24
Author: Jens Maurer <[email protected]>
Date: Sun Nov 26 18:36:42 2017 +0100
[fs.op.funcs] Separate effects from returns. (#1848)
commit e2457df32a6ee70417681de10be78eb815a0b22f
Author: Jens Maurer <[email protected]>
Date: Mon Nov 20 10:23:18 2017 +0100
[complex.numbers] Use \xref for references to the C standard.
commit bd2ce5c2d4ec26a5c412160ce5983149c510a131
Author: Jens Maurer <[email protected]>
Date: Tue Nov 21 23:35:02 2017 +0100
Create a new index for library headers
and remove them from the index of library names.
commit d1125303456c2305a72baebbb51d80151722f8ab
Author: Jonathan Wakely <[email protected]>
Date: Thu Nov 23 14:33:32 2017 +0000
[basic.life],[mem.res.private],[mem.res.pool.mem],[mem.res.monotonic.buffer] fix cross-references
commit 1d467a8a06cabd314e250a04ca9a4c81591d035a
Author: Johel Ernesto Guerrero Peña <[email protected]>
Date: Thu Nov 23 15:31:45 2017 -0400
[func.require] Clarify which assignment operators
commit 9dbbf9cbbe6994f7d4ad19098029e995eb34e1c3
Author: Johel Ernesto Guerrero Peña <[email protected]>
Date: Sat Nov 25 19:04:08 2017 -0400
[unord.req, fs.path.io] Fix "Effects: Equivalent to" styles (#1806)
commit efdda2b9ca7f0ed78d7f134d8b1ca2e405610190
Author: Jens Maurer <[email protected]>
Date: Sat Nov 25 22:57:08 2017 +0100
[lib] Harmonize punctuation of 'Effects: Equivalent to' (#1815)
commit 63ccd0513f6d9ac3555ca8becfcd7d15ed503522
Author: stbergmann <[email protected]>
Date: Sat Nov 25 03:33:31 2017 +0100
[basic.types] Add missing "be" in note (#1839)
commit 9a8f4fde487200bcf4433facb0274f67d540617c
Author: Jens Maurer <[email protected]>
Date: Sat Nov 25 03:29:09 2017 +0100
[lex.ccon] Align char16_t phrasing to UTF-8 one (#1847)
commit 784f8c9980a74393ceaf201b343aa232a82113a4
Author: Thomas Köppe <[email protected]>
Date: Fri Nov 24 01:03:52 2017 +0000
[complex{,.special,.members}] Use injected-class-name in class definitions and itemdecls
commit 877918fdc3e5223006b782d3c5959470bd7c02a8
Author: Jonathan Wakely <[email protected]>
Date: Fri Nov 24 00:57:49 2017 +0000
[allocator.requirements] Fix pointer_to expression and reinstate descriptive variable 'r' (#1656)
commit 2ca4340d93ec4cd63c330303e5beef20db8604df
Author: Jonathan Wakely <[email protected]>
Date: Thu Nov 23 22:48:22 2017 +0000
[vector.bool] Use injected-class-name in synopsis (#1844)
commit 4eedcb0d29f7c3b143dc3492caecb9c608590e12
Author: Richard Smith <[email protected]>
Date: Wed Nov 22 19:26:28 2017 -0800
[diff.cpp17.library] Add Annex C entry for new headers <compare> and
<syncstream> added since C++17.
commit 9112c6aecc48e1a0deea1f9493de224a43689a87
Author: Aaron Ballman <[email protected]>
Date: Mon Mar 13 09:51:35 2017 -0400
Use the terms "single-object delete expression" and
"array delete expression" as definitions, removing
the italics when not appropriate.
commit b3b8a19812829ab521958eed6b2f1a3411180cdb
Author: Thomas Köppe <[email protected]>
Date: Sun Nov 19 22:17:17 2017 +0000
[structure.summary] Remove obsolete paragraph about Note(s): and Example(s): elements that we no longer provide
Also restyle a manual Note: in [unord.req] to use the standard note environment.
commit 8958e953fd2cd60bd02ed4fcd2c055eded6e0f4d
Author: Thomas Köppe <[email protected]>
Date: Tue Nov 21 23:28:52 2017 +0000
[unord.req] Spell out the behaviour of cbegin/cend, remove ambiguous note
commit b64354a7503c1cdc358d7f5dd1405ed903e170ef
Author: Thomas Köppe <[email protected]>
Date: Wed Nov 22 12:10:00 2017 +0000
[depr.meta.types] Merge POD deprecation into existing type traits deprecation section and reorganize the section a bit
commit 374252a76008ac0316320d2dd4e8652910539a97
Author: Jens Maurer <[email protected]>
Date: Wed Nov 22 01:01:39 2017 +0100
[util.sharedptr] Dissolve subclause and integrate contents into parent. (#1814)
commit 75c0adccb38301f66979cc3c3ab5cd15a0a75a17
Author: Jens Maurer <[email protected]>
Date: Tue Nov 21 23:29:05 2017 +0100
[expr, over] Add cross-references for 'usual arithmetic conversions'. (#1804)
commit 7670c1a8e025aa464fe5bebff7ae2626fb01b07f
Author: Jens Maurer <[email protected]>
Date: Tue Feb 7 11:10:48 2017 +0100
[structure.specifications] Do not use library description macros in running text
This avoids colons in running text and some bad spacing.
commit deb9fb19a039dbcd943a5955064d8c0e3d55a45c
Author: Alisdair Meredith <[email protected]>
Date: Sat Mar 4 06:46:30 2017 -1000
Consistent comma after e.g. and i.e.
After grepping to determine the preferred idiom, it seems clear that
the standard prefers to follow both e.g. and i.e. with a comma, rather
than omit it. This patch applies that rule to the few places that
were missing the comma.
commit e1b92d6c125ef43e19915ba0b031baa2c6611c62
Author: Thomas Köppe <[email protected]>
Date: Tue Nov 21 18:01:18 2017 +0000
[over.match.best] Remove meaningless "i.e."
commit 72b80b32c7ab185cc08eb72cf24ce6d839f7e6f3
Author: Thomas Köppe <[email protected]>
Date: Tue Nov 21 16:19:36 2017 +0000
[alg.partition] Use established terminology 'partitioned with respect to'
commit b4a1e3c1c73531f3a61ae6e44abecab766e9c537
Author: Thomas Köppe <[email protected]>
Date: Tue Nov 21 15:52:31 2017 +0000
[binary.search] Formulate partitioning requirements in the same style as all the other related algorithms do
commit b1fd50580cf389c61635a5767bf46b1b8823ce0c
Author: Jens Maurer <[email protected]>
Date: Tue Nov 21 13:04:27 2017 +0100
[expr.compound] Expression operators do not 'return' results. (#1818)
commit 68e53321ed7bf8505748e0f69947e21f9374d3a2
Author: Johel Ernesto Guerrero Peña <[email protected]>
Date: Tue Nov 21 08:02:52 2017 -0400
[strings.general] Use plural "string classes" (#1823)
The summary even says "string classes", and now we also have the "string_view classes".
commit a5c25539b2605d8e6817b43d48e359d24642d1b7
Author: Jens Maurer <[email protected]>
Date: Tue Nov 21 11:46:26 2017 +0100
[variant] Move 'Otherwise' to start of following bullet. (#1813)
commit e13e3097e6c92f67b86458af9a3d4793b0aeb544
Author: Thomas Köppe <[email protected]>
Date: Tue Nov 21 01:49:37 2017 +0000
[utilities] Add missing charconv entry to summary table
commit cbd25c4b3e6f83aaf2fa9fe894ff52b1f428a8c5
Author: Thomas Köppe <[email protected]>
Date: Sun Nov 12 00:37:09 2017 -0700
Hyphenate 'pointer-to-member' when it is an adjective and define the adjective.
Fixes #1369.
commit 801fb0ba013362cede5a9eaeae0da688e554d3ad
Author: Jens Maurer <[email protected]>
Date: Sun Nov 12 06:51:19 2017 +0100
[conv.rank] Move from [conv] to [basic.types] (#1802)
commit ff65cec7b977db1a6900b0321f10c91e152ab8d2
Author: Jens Maurer <[email protected]>
Date: Wed Nov 1 23:39:21 2017 +0100
Use 'trailing requires-clause'
where the requires-clause in a template-head is not meant.
Fixes #1672.
commit 672bb6075cb0512a234b4f6bdd41f00cc01e6642
Author: Jens Maurer <[email protected]>
Date: Wed Apr 19 23:03:42 2017 +0200
[dcl.init] Clarify introduction
Fixes #1615.
commit 7c6f936298543387f2f17563f01e95fce904783d
Author: Jens Maurer <[email protected]>
Date: Thu Nov 2 22:18:04 2017 +0100
[array] Dissolve single-item subclauses.
Partially addresses #1242.
commit 04c4e8338eadb18deb63354a95c2624ef5b3fbed
Author: Jens Maurer <[email protected]>
Date: Sat Nov 11 19:34:18 2017 +0100
[intro.execution] Clarify full-expression in example.
Fixes #1706.
commit 2e25955ecf6a576c98590097ec76aa616495c466
Author: Jens Maurer <[email protected]>
Date: Sat Nov 11 07:29:23 2017 +0100
[expr] Add subclauses and adjust cross-references to [expr].
Also move [basic.lval] into [expr].
commit 87c88e99620ecbc3958dc0e06d86aa72806206c4
Author: Casey Carter <[email protected]>
Date: Sat Nov 11 21:48:25 2017 -0700
[algorithms.general] & [algorithm.syn] name "mutating sequence operations" consistently (#1801)
Despite the stable name "alg.modifying.operations," the section is titled "Mutating sequence operations."
commit 0963b3d26dcce7dff2b924e4d9d3daff0e1f50d6
Author: Jens Maurer <[email protected]>
Date: Sun Nov 12 05:32:46 2017 +0100
[lib] Harmonize introductory comments in synopses (#1775)
Even if no section reference is given, make them lowercase
and remove trailing colons.
commit 6b6578cc415bf17b237a0889ef2dc53f4b392d02
Author: Jens Maurer <[email protected]>
Date: Sun Nov 12 05:30:40 2017 +0100
[locale.moneypunct.virtuals] Add reference to ISO 4217. (#1779)
commit 49870469d0a3347b91e42faa9c931859e924e83e
Author: Jens Maurer <[email protected]>
Date: Sun Nov 12 04:21:40 2017 +0100
[lib] Add hyphen to 'well-defined' (#1776)
commit 982a456f176ca00409c6e514af932051dce2485f
Author: Jens Maurer <[email protected]>
Date: Sat Nov 11 05:06:58 2017 +0100
[intro], [basic] Rearrange subclauses
Fixes #1539.
commit 301a71e35c49fafe2188736aff2631f36c81dd47
Author: Richard Smith <[email protected]>
Date: Fri Nov 10 23:55:37 2017 -0800
[basic.lookup.argdep] Correct xref to point to the normative invisible
friend rule.
commit 4f77c89e7635c8a9f361a0757c7765bcefeacd5e
Author: Thomas Köppe <[email protected]>
Date: Thu Nov 9 17:33:33 2017 -0700
[over.built] Improve placeholder phrasing
commit 24bfe67b857bc6634ffc796324999373352d6d72
Author: Thomas Köppe <[email protected]>
Date: Wed Nov 8 23:50:33 2017 -0700
[meta.endian] Clarify wording regarding size of scalar types
commit 7a7d123584613a90cc64dbfb4b848807c3f085c8
Author: Johel Ernesto Guerrero Peña <[email protected]>
Date: Wed Nov 8 01:50:47 2017 -0400
[any.class] Revert dot to comma typo from bdff8687c (#1795)
commit ee8aa525e65ada1f1949ebc9eb006af8b29f7e85
Author: Jonathan Wakely <[email protected]>
Date: Wed Nov 8 00:13:27 2017 +0000
[basic.ios.members], [streambuf.virt.put], [cmplx.over] replace enumerated lists with itemized
commit 6ca5523589f8eb8d2843fe34386382a34064f41d
Author: Jonathan Wakely <[email protected]>
Date: Tue Nov 7 23:24:36 2017 +0000
[fstream], [fs.class.directory_entry] qualify filesystem::path consistently
commit b4acb0ca022f5b4e8a535a164c845ab87e312a1f
Author: Richard Smith <[email protected]>
Date: Tue Nov 7 08:56:03 2017 -0800
[basic.def] Fix typo "braced-enclosed".
commit b174bd63680803b18f1ebce4d743b13c257cd3bf
Author: Thomas Köppe <[email protected]>
Date: Thu Nov 2 18:54:45 2017 +0000
[defns.referenceable] Remove duplicate 'an'
commit f0b892320c609974270ccd415ecef081529e664f
Author: Jens Maurer <[email protected]>
Date: Thu Nov 2 03:19:54 2017 +0100
[array.size] Remove full member declaration from itemdecl. (#1790)
commit ea4b17a448b46671488b96812629d92c0c9c61be
Author: Jens Maurer <[email protected]>
Date: Fri Oct 27 00:53:45 2017 +0200
[expr.prim.lambda.capture] Move discusssion of capture-by-reference of references
to after the introduction of 'capture by reference'.
Fixes #1785.
</code></pre>