-
Notifications
You must be signed in to change notification settings - Fork 769
/
Copy pathn4566.html
608 lines (444 loc) · 21.7 KB
/
n4566.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
<!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>n4566</title></head><body>
<h1>N4566 Editor's Report -- Working Draft, Standard for Programming Language C++</h1>
<p>2015-11-09 <br />
Richard Smith <br />
Google Inc <br />
<code><[email protected]></code></p>
<h2>Acknowledgements</h2>
<p>Very special thanks to Dawn Perchik, who performed nearly all the edits for
motions moved at Kona (any errors are mine).</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 those who have provided pull requests with fixes.</p>
<h2>New papers</h2>
<ul>
<li><a href="http://wg21.link/n4567">N4567</a> is the current working draft. It replaces <a href="http://wg21.link/n4527">N4527</a>.</li>
<li>N4566 is this Editor's Report for the current working draft.</li>
</ul>
<h3>Motions incorporated into working draft</h3>
<h4>Core working group motions</h4>
<p>CWG motion 1: <a href="http://wg21.link/p0164r0">Core issue resolutions</a> from 21 issues applied, resolving 23 issues:</p>
<ul>
<li><a href="http://wg21.link/cwg1274">1274</a></li>
<li><a href="http://wg21.link/cwg1391">1391</a></li>
<li><a href="http://wg21.link/cwg1722">1722</a></li>
<li><a href="http://wg21.link/cwg1847">1847</a> (no changes, resolved by 1391)</li>
<li><a href="http://wg21.link/cwg1863">1863</a></li>
<li><a href="http://wg21.link/cwg1949">1949</a></li>
<li><a href="http://wg21.link/cwg1975">1975</a> (wording removed by CWG motion 4)</li>
<li><a href="http://wg21.link/cwg1981">1981</a></li>
<li><a href="http://wg21.link/cwg1990">1990</a></li>
<li><a href="http://wg21.link/cwg2000">2000</a></li>
<li><a href="http://wg21.link/cwg2004">2004</a></li>
<li><a href="http://wg21.link/cwg2006">2006</a></li>
<li><a href="http://wg21.link/cwg2015">2015</a></li>
<li><a href="http://wg21.link/cwg2016">2016</a> (no changes, resolved by 1990)</li>
<li><a href="http://wg21.link/cwg2019">2019</a></li>
<li><a href="http://wg21.link/cwg2024">2024</a></li>
<li><a href="http://wg21.link/cwg2026">2026</a></li>
<li><a href="http://wg21.link/cwg2027">2027</a></li>
<li><a href="http://wg21.link/cwg2031">2031</a></li>
<li><a href="http://wg21.link/cwg2052">2052</a></li>
<li><a href="http://wg21.link/cwg2075">2075</a></li>
<li><a href="http://wg21.link/cwg2101">2101</a></li>
<li><a href="http://wg21.link/cwg2120">2120</a></li>
</ul>
<p>CWG motion 2: <a href="http://wg21.link/p0001r1">P0001R1 "Remove Deprecated Use of the <code>register</code> Keyword"</a></p>
<p>CWG motion 3: <a href="http://wg21.link/p0002r1">P0002R1 "Remove Deprecated <code>operator++(bool)</code>"</a></p>
<p>CWG motion 4: <a href="http://wg21.link/p0012r1">P0012R1 "Make exception specifications be part of the type system, version 5"</a></p>
<p>CWG motion 5: <a href="http://wg21.link/p0061r1">P0061R1 "<code>__has_include</code> for C++17"</a></p>
<p>CWG motion 6: <a href="http://wg21.link/p0134r0">P0134R0 "Introducing a name for <em>brace-or-equal-initializers</em> for non-static data members"</a></p>
<p>CWG motion 7: <a href="http://wg21.link/p0136r1">P0136R1 "Rewording inheriting constructors (core issue 1941 et al)"</a></p>
<h4>Library working group motions</h4>
<p>LWG motion 1: <a href="http://wg21.link/p0165r0">Library issue resolutions</a> for 34 issues applied:</p>
<ul>
<li><a href="http://wg21.link/lwg1169">1169</a></li>
<li><a href="http://wg21.link/lwg2072">2072</a></li>
<li><a href="http://wg21.link/lwg2101">2101</a></li>
<li><a href="http://wg21.link/lwg2111">2111</a></li>
<li><a href="http://wg21.link/lwg2119">2119</a></li>
<li><a href="http://wg21.link/lwg2127">2127</a></li>
<li><a href="http://wg21.link/lwg2133">2133</a></li>
<li><a href="http://wg21.link/lwg2156">2156</a></li>
<li><a href="http://wg21.link/lwg2218">2218</a></li>
<li><a href="http://wg21.link/lwg2219">2219</a></li>
<li><a href="http://wg21.link/lwg2244">2244</a></li>
<li><a href="http://wg21.link/lwg2250">2250</a></li>
<li><a href="http://wg21.link/lwg2259">2259</a></li>
<li><a href="http://wg21.link/lwg2336">2336</a></li>
<li><a href="http://wg21.link/lwg2353">2353</a></li>
<li><a href="http://wg21.link/lwg2367">2367</a></li>
<li><a href="http://wg21.link/lwg2380">2380</a></li>
<li><a href="http://wg21.link/lwg2384">2384</a></li>
<li><a href="http://wg21.link/lwg2385">2385</a></li>
<li><a href="http://wg21.link/lwg2435">2435</a></li>
<li><a href="http://wg21.link/lwg2447">2447</a></li>
<li><a href="http://wg21.link/lwg2462">2462</a></li>
<li><a href="http://wg21.link/lwg2466">2466</a></li>
<li><a href="http://wg21.link/lwg2469">2469</a></li>
<li><a href="http://wg21.link/lwg2473">2473</a></li>
<li><a href="http://wg21.link/lwg2476">2476</a></li>
<li><a href="http://wg21.link/lwg2477">2477</a></li>
<li><a href="http://wg21.link/lwg2483">2483</a></li>
<li><a href="http://wg21.link/lwg2484">2484</a></li>
<li><a href="http://wg21.link/lwg2485">2485</a></li>
<li><a href="http://wg21.link/lwg2486">2486</a></li>
<li><a href="http://wg21.link/lwg2487">2487</a></li>
<li><a href="http://wg21.link/lwg2489">2489</a></li>
<li><a href="http://wg21.link/lwg2492">2492</a></li>
<li>Note: <a href="http://wg21.link/lwg2181">2181</a> resolution from P0165R0 was <em>not</em> applied by this motion</li>
</ul>
<p>LWG motion 2: <a href="http://wg21.link/p0165r0">Library issue resolutions</a> for 4 issues applied:</p>
<ul>
<li><a href="http://wg21.link/lwg2224">2224</a></li>
<li><a href="http://wg21.link/lwg2234">2234</a></li>
<li><a href="http://wg21.link/lwg2273">2273</a></li>
<li><a href="http://wg21.link/lwg2495">2495</a></li>
</ul>
<p>LWG motion 3: <a href="http://wg21.link/p0004r1">P0004R1 "Remove Deprecated <code>iostreams</code> aliases"</a></p>
<p>LWG motion 4: <a href="http://wg21.link/p0006r0">P0006R0 "Adopt Type Traits Variable Templates for C++17"</a></p>
<p>LWG motion 5: <a href="http://wg21.link/p0092r1">P0092R1 "Polishing <code><chrono></code>"</a></p>
<p>LWG motion 6: <a href="http://wg21.link/p0007r1">P0007R1 "Constant View: A proposal for a <code>std::as_const</code> helper function template"</a></p>
<p>LWG motion 7: <a href="http://wg21.link/p0156r0">P0156R0 "Variadic <code>lock_guard</code> (rev 3)"</a></p>
<p>LWG motion 9: <a href="http://wg21.link/p0074r0">P0074R0 "Making <code>std::owner_less</code> more flexible"</a></p>
<p>LWG motion 10: <a href="http://wg21.link/p0013r1">P0013R1 "Logical type traits rev 2"</a> (plus <code>_v</code> templates as LWG motion 4 was applied)</p>
<h3>Editorial changes to papers as moved</h3>
<h4>CWG motion 1, issue 1990</h4>
<p>Italicized the term "conversion function" in its definition (and added index entry).</p>
<h4>CWG motion 3</h4>
<p>The Annex C entry was added into a section for Clause 5 [expr], instead of a
section for Clause D [depr], because that is where the normative wording for
this feature used to live.</p>
<h4>CWG motion 4</h4>
<p>The change to [except.spec] 15.4p1 could not be applied, but the current
wording is correct. Editorially fixed formatting errors in wording,
reformatted text for consistency and readability, and fixed use of
macros.</p>
<p>The change in the formulation of function pointer decay that avoids
suggesting that only possibly-throwing functions decay has been applied
to two more places in [except.handle].</p>
<h2>Minor editorial fixes</h2>
<p>A log of all editorial fixes made since N4527 is below:</p>
<pre><code>commit de6f56a818884092d4ce4aa5e49af9f357007901
Author: Richard Smith <[email protected]>
Date: Wed Nov 4 14:28:15 2015 -0800
[dcl.constexpr] Consistently describe rules for validity of constexpr
function definitions as "requirements" so that the cross-references
to this definition use the same term as the definition itself.
commit 4dbad61e6eee2552c29e1c50c4d34db906d25009
Author: Richard Smith <[email protected]>
Date: Wed Oct 7 14:32:19 2015 -0700
[cstdint.syn] <cstdint> defines no functions; don't suggest that it does.
commit f853831b14614a47d6ea11d29837c88d6ef4bb8a
Author: Richard Smith <[email protected]>
Date: Mon Nov 9 01:11:45 2015 -0800
[meta.logical] Improve formatting for consistency with other library
clauses.
commit c49db1de03a6a777e827d62eeeaa6523a0a22f5f
Author: Richard Smith <[email protected]>
Date: Sat Oct 24 11:24:36 2015 -0700
[dcl.init.list] Update example to reflect that binding a temporary to a
reference is ill-formed; this also applies to std::initializer_list
initialization, which is specified as performing a reference binding.
commit be5adfba61b146272b23442cd2fdef5bd94485f9
Author: Dawn Perchik <[email protected]>
Date: Thu Oct 29 13:27:32 2015 -0700
[over.load] Added cross references to function/array vs. pointer in overloading
commit c54cf0dcbf00cf2f16c9da8535abc939ac4321ad
Author: Dawn Perchik <[email protected]>
Date: Wed Oct 28 18:28:17 2015 -0700
[expr] Add missing indexes for definitions, and make others consistent.
Indexes were added for the following definitions:
[expr.const] constant expression
[expr.const] core constant expression
[expr.const] integral constant expression
[expr.const] converted constant expression
[gram.expr] built-in operators
[expr.call] virtual function call
[expr.call] default argument promotion
[expr.new] allocated type
[expr.prim.lambda] implicit capture
commit 283dae57ee352153cd2954c98e6e1c747d137a29
Author: Dawn Perchik <[email protected]>
Date: Wed Oct 28 16:02:39 2015 -0700
[gram.expr] Add an index to the definition of "composite pointer type"
commit d550da35efc7b8b410a19fd25317521f538c5f7c
Author: Dawn Perchik <[email protected]>
Date: Wed Oct 28 15:51:38 2015 -0700
[gram.expr] Add an index to definition of term "cv-combined type"
commit b2fcd697f378a212f2e6dc5225c74a2b7566be76
Author: Dawn Perchik <[email protected]>
Date: Wed Oct 28 15:43:34 2015 -0700
[unord.req] Change object to value to match cleanup after merge with LWG2059.
Referenced cleanup is "[unord.req] Made intro wording for Table 103 more consistent."
commit 9fb82225f03cda7f1ee5427b87f986e7b010ff47
Author: Richard Smith <[email protected]>
Date: Thu Oct 22 16:06:22 2015 -0700
[dcl.array] Fix typo; multiple array declaratiors create a
multidimensional array type, not necessarily a multidimensional
array object.
commit 3454b4dd7003a9104755c6640beb9389ee385644
Author: Richard Smith <[email protected]>
Date: Wed Oct 21 17:56:46 2015 -0700
[diff.cpp11] Add a note that default member initializers for aggregates
is a breaking change compared to C++11.
Fixes CWG2114.
commit e00fab806aef1855364bc416265b74e5da94aa99
Author: Richard Smith <[email protected]>
Date: Wed Oct 21 17:44:42 2015 -0700
[temp.class.spec.match] Repeat a portion of an example so we don't
separate the declaration and use of some template specializations
by several pages.
Fixes CWG2035.
commit 2d4e4e771e6722e26f099eddf25721036a603a9e
Author: Richard Smith <[email protected]>
Date: Wed Oct 21 17:38:49 2015 -0700
[dcl.attr.grammar] Remove grammar ambiguity from balanced-token-seq.
commit 2bbbce9326e265227c5651e9c5a7689f23f5d7e0
Author: Richard Smith <[email protected]>
Date: Wed Oct 21 13:06:29 2015 -0700
Update some cross-references from [class.union] to [class.union.anon].
commit 3cb61dafd6c79a0556ccb7e8e02c45e4f30c348f
Author: Richard Smith <[email protected]>
Date: Wed Oct 21 12:30:53 2015 -0700
[class.union] Split wording for anonymous unions to a new subclause,
[class.union.anon].
commit 15124e411210030af3f85173014d09f72ce82741
Author: Dawn Perchik <[email protected]>
Date: Wed Oct 21 09:42:02 2015 -1000
[class.union] Make terms "union-like class" and "variant member" indexed definitions.
commit e1961df118a01532677b22335f2e0d739addfe76
Author: Dawn Perchik <[email protected]>
Date: Tue Oct 20 22:29:31 2015 -1000
[diff.cpp14.depr] Fix hard coded reference to Annex D.
commit 94762ac9a220c9be2ab7091d786a9ed72e0e5fb0
Author: Richard Smith <[email protected]>
Date: Tue Oct 20 18:25:00 2015 -0700
[except.spec] Fix capitalization mismatch at start of bullets.
commit 6dc1fe0e83a5b592b55d7bb6d1454b340bd7a202
Author: Richard Smith <[email protected]>
Date: Wed Oct 7 13:38:37 2015 -0700
[new.delete.array] Add missing changes from LWG206.
The relevant editor's report indicates that the wording changes were
reworded, but that rewording lost a normative requirement (that a
replacement `operator new[](size_t, nothrow_t)` returns a pointer
as if produced by calling `operator new[](size_t)`).
Fixes #543.
commit 777e2a9aacd404db27f7563212cd12c3f571f9ac
Author: Richard Smith <[email protected]>
Date: Wed Sep 30 11:06:56 2015 -0700
[temp.dep] Remove duplicate 'if'.
commit 37776fa9f469e563f3288835e9e6c9d6fb7a2f88
Author: Jonathan Wakely <[email protected]>
Date: Mon Sep 28 12:25:21 2015 +0100
[thread.condition.condvar] wait() cannot timeout.
commit 059b074a86953da500b9aa18c59c93adcb984d3c
Author: Daniel Frey <[email protected]>
Date: Fri Sep 18 19:58:15 2015 +0200
Change "typename decay<F>::type" to "decay_t<F>"
Looks like this one was overlooked when `decay_t` (and the other `_t` helpers) were introduced.
commit 540d881be3c46693529273649aacb9fc830bb987
Author: Jonathan Wakely <[email protected]>
Date: Wed Sep 16 10:40:40 2015 +0100
[library.general] Fix typo.
Fixes: #538
commit 8210be74e8b92f6c841fb330dcfbe28d553a1eed
Author: FrankHB <[email protected]>
Date: Mon Sep 14 14:34:33 2015 +0800
[tuple.assign] Fix typo
Fixed redundant ')'.
commit 24264e56e289991f247daed172d9a6960a85395b
Author: Jonathan Wakely <[email protected]>
Date: Tue Aug 25 19:56:42 2015 +0100
[util.smartptr.shared.const] Add missing period.
commit 4e01e8ce7f6667692b799c828c85b7306745225f
Author: andypea <[email protected]>
Date: Tue Aug 18 17:24:29 2015 +1200
[ext.manip] Replace a colon with a semi-colon.
commit d36ffa694a8a8460398aa2a75be1b8dcf8b720c4
Author: Richard Smith <[email protected]>
Date: Tue Jul 21 11:56:46 2015 -0700
[class.protected] Update example to match CWG1873.
Fixes #527.
commit 6bc0318540e528031dac40fb54eee3c93a856616
Author: Richard Smith <[email protected]>
Date: Thu Jul 9 17:56:12 2015 -0700
[dcl.enum] Fix italicization of non-definition of "underlying type".
commit 6739a892b2d92410f56a0b6d6055082f287031dc
Author: Aaron Ballman <[email protected]>
Date: Mon Jul 13 14:16:03 2015 -0400
cv-unqualified is not a grammar term in this context, similar to other uses in the same paragraph.
commit b6d6cec80404d88f553868fa8167d3d68b87cdd2
Author: Aaron Ballman <[email protected]>
Date: Mon Jul 20 14:30:06 2015 -0400
Another ODR spelling change. Should be the last one.
commit 33345c9e46db667b41e8b708db6d79f35fbfeffa
Author: Aaron Ballman <[email protected]>
Date: Mon Jul 20 13:54:20 2015 -0400
Unify the spelling of one-definition rule to be consistent.
commit 968cc327f6e217609596763711225cd51f3e9865
Author: Jonathan Wakely <[email protected]>
Date: Fri Jul 17 10:26:08 2015 +0100
[ostream.seeks] Fix nesting of itemdecl inside itemdescr.
Reported by Stephan T. Lavavej. Fixes #524.
commit f60466ccd45df1e560403d8482e9c08df7a97248
Author: Jonathan Wakely <[email protected]>
Date: Sat Jul 11 17:12:34 2015 +0100
[allocator.adaptor.members] Use code font for class name.
commit bc293b7d32a2dde11bd0f60a92d5371acff1f3d0
Author: Jonathan Wakely <[email protected]>
Date: Sat Jul 11 16:46:49 2015 +0100
[allocator.adaptor.members] Add space after comma.
commit efc600e757239d00baf759efac7cd979fe0152b3
Author: Richard Smith <[email protected]>
Date: Thu Jul 9 17:41:00 2015 -0700
[dcl.fct.def.delete], [dcl.constexpr], [class.friend]: Replace "implicitly inline" with "implicitly an inline function", because the latter is the term defined in 7.1.2.
commit 299ec33999ca8d57ce40d5663373d8da46de0baa
Author: Richard Smith <[email protected]>
Date: Sun Jul 5 17:44:43 2015 -0700
[namespace.udecl] Remove incorrect example.
CWG36 (still open) notes that this example is incorrect, but was left in
the standard, confusing people for 17 years. Remove the example rather
than fixing it to match the normative text, because the validity of this
code is still under dispute.
commit 90352854d99ee3e3b2f935bba47c6749365d52d8
Author: Dawn Perchik <[email protected]>
Date: Mon Jun 29 13:21:25 2015 -0700
[class.union] Change "but not" to "but it shall not have" as suggested by Hubert Tong.
commit c62428ecedb6ddc076e3d1b37e9e2bfad591b7bc
Author: Aaron Ballman <[email protected]>
Date: Fri Jun 26 15:19:38 2015 -0400
Align declarations
commit 05deea2df70aee5fa37e7a91b041a86bd8723d01
Author: Dawn Perchik <[email protected]>
Date: Fri Jun 19 08:57:08 2015 -0700
Fix references in CWG1780 as per discussion on c++std-core.
commit e6e356c0ba3ba0e552f4f924e166fcab53b9a2a1
Author: Richard Smith <[email protected]>
Date: Tue Jun 16 12:49:16 2015 -0700
Update Annex A and Annex F to reflect recent changes.
commit 93570180234ec5b99df4a2b13835c34b35734ae9
Author: Richard Smith <[email protected]>
Date: Thu May 28 10:18:19 2015 -0700
[ratio.arithmetic] Improve indentation of comment in example.
commit 9330d4ae5a23be00d61caea4eeaad8184421fbec
Author: Richard Smith <[email protected]>
Date: Sun Jun 7 12:45:20 2015 -0700
[except.spec] Remove spurious parens in example.
commit 093c1eebd3e2a1682331e8b1bd16677cbdb79d6f
Author: Jonathan Wakely <[email protected]>
Date: Tue May 26 18:41:29 2015 +0100
[streambuf], [istream], [iostreamclass], [ostream] These are class templates not classes.
commit 6f009e72cf5dc2b1de0ac6a1d7abce63ebd4526d
Author: Jonathan Wakely <[email protected]>
Date: Tue May 26 18:37:56 2015 +0100
[streambuf] Use injected class name for basic_streambuf.
commit c99b9246e43bdf60b79fd406f3774c226a3f3433
Author: Jonathan Wakely <[email protected]>
Date: Fri May 22 18:07:38 2015 +0100
[support.dynamic] LWG2458 remove correct signatures
commit 2c4c7a5b9098a6231bf3885fe96fbc9deb2f047f
Author: Maurice Bos <[email protected]>
Date: Fri May 8 11:32:55 2015 +0200
s/template classes/class templates/
</code></pre>