-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrose-exper-c++-compiler.ebnf.xhtml
6186 lines (6186 loc) · 677 KB
/
rose-exper-c++-compiler.ebnf.xhtml
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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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" />
<meta name="generator" content="Railroad Diagram Generator 1.63" />
<style type="text/css">
::-moz-selection
{
color: #FFFCF0;
background: #0F0C00;
}
::selection
{
color: #FFFCF0;
background: #0F0C00;
}
.ebnf a, .grammar a
{
text-decoration: none;
}
.ebnf a:hover, .grammar a:hover
{
color: #050400;
text-decoration: underline;
}
.signature
{
color: #806600;
font-size: 11px;
text-align: right;
}
body
{
font: normal 12px Verdana, sans-serif;
color: #0F0C00;
background: #FFFCF0;
}
a:link, a:visited
{
color: #0F0C00;
}
a:link.signature, a:visited.signature
{
color: #806600;
}
a.button, #tabs li a
{
padding: 0.25em 0.5em;
border: 1px solid #806600;
background: #F1E8C6;
color: #806600;
text-decoration: none;
font-weight: bold;
}
a.button:hover, #tabs li a:hover
{
color: #050400;
background: #FFF6D1;
border-color: #050400;
}
#tabs
{
padding: 3px 10px;
margin-left: 0;
margin-top: 58px;
border-bottom: 1px solid #0F0C00;
}
#tabs li
{
list-style: none;
margin-left: 5px;
display: inline;
}
#tabs li a
{
border-bottom: 1px solid #0F0C00;
}
#tabs li a.active
{
color: #0F0C00;
background: #FFFCF0;
border-color: #0F0C00;
border-bottom: 1px solid #FFFCF0;
outline: none;
}
#divs div
{
display: none;
overflow:auto;
}
#divs div.active
{
display: block;
}
#text
{
border-color: #806600;
background: #FFFEFA;
color: #050400;
}
.small
{
vertical-align: top;
text-align: right;
font-size: 9px;
font-weight: normal;
line-height: 120%;
}
td.small
{
padding-top: 0px;
}
.hidden
{
visibility: hidden;
}
td:hover .hidden
{
visibility: visible;
}
div.download
{
display: none;
background: #FFFCF0;
position: absolute;
right: 34px;
top: 94px;
padding: 10px;
border: 1px dotted #0F0C00;
}
#divs div.ebnf, .ebnf code
{
display: block;
padding: 10px;
background: #FFF6D1;
width: 992px;
}
#divs div.grammar
{
display: block;
padding-left: 16px;
padding-top: 2px;
padding-bottom: 2px;
background: #FFF6D1;
}
pre
{
margin: 0px;
}
.ebnf div
{
padding-left: 13ch;
text-indent: -13ch;
}
.ebnf code, .grammar code, textarea, pre
{
font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
}
tr.option-line td:first-child
{
text-align: right
}
tr.option-text td
{
padding-bottom: 10px
}
table.palette
{
border-top: 1px solid #050400;
border-right: 1px solid #050400;
margin-bottom: 4px
}
td.palette
{
border-bottom: 1px solid #050400;
border-left: 1px solid #050400;
}
a.palette
{
padding: 2px 3px 2px 10px;
text-decoration: none;
}
.palette
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
}
</style><svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width: 2;}
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect {height: 32px;}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs></svg></head>
<body>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="StartSymbol">StartSymbol:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="179" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Translation-unit" xlink:title="Translation-unit">
<rect x="31" y="3" width="120" height="32"></rect>
<rect x="29" y="1" width="120" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Translation-unit</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m120 0 h10 m3 0 h-3"></svg:path>
<polygon points="169 17 177 13 177 21"></polygon>
<polygon points="169 17 161 13 161 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#StartSymbol" title="StartSymbol">StartSymbol</a></div>
<div> ::= <a href="#Translation-unit" title="Translation-unit">Translation-unit</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Typedef-name">Typedef-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="137" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="31" y="3" width="78" height="32"></rect>
<rect x="29" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="127 17 135 13 135 21"></polygon>
<polygon points="127 17 119 13 119 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Typedef-name" title="Typedef-name">Typedef-name</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Type-name" title="Type-name">Type-name</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Namespace-name">Namespace-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="247" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Original-namespace-name" xlink:title="Original-namespace-name">
<rect x="31" y="3" width="188" height="32"></rect>
<rect x="29" y="1" width="188" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Original-namespace-name</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m188 0 h10 m3 0 h-3"></svg:path>
<polygon points="237 17 245 13 245 21"></polygon>
<polygon points="237 17 229 13 229 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Namespace-name" title="Namespace-name">Namespace-name</a></div>
<div> ::= <a href="#Original-namespace-name" title="Original-namespace-name">Original-namespace-name</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Nested-name-specifier" title="Nested-name-specifier">Nested-name-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Qualified-namespace-specifier" title="Qualified-namespace-specifier">Qualified-namespace-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Using-directive" title="Using-directive">Using-directive</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Original-namespace-name">Original-namespace-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="137" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="31" y="3" width="78" height="32"></rect>
<rect x="29" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="127 17 135 13 135 21"></polygon>
<polygon points="127 17 119 13 119 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Original-namespace-name" title="Original-namespace-name">Original-namespace-name</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Extension-namespace-definition" title="Extension-namespace-definition">Extension-namespace-definition</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Namespace-name" title="Namespace-name">Namespace-name</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Namespace-alias">Namespace-alias:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="137" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="31" y="3" width="78" height="32"></rect>
<rect x="29" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="127 17 135 13 135 21"></polygon>
<polygon points="127 17 119 13 119 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Namespace-alias" title="Namespace-alias">Namespace-alias</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Class-name">Class-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="239" height="81">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="51" y="3" width="78" height="32"></rect>
<rect x="49" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Identifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Simple-template-id" xlink:title="Simple-template-id">
<rect x="51" y="47" width="140" height="32"></rect>
<rect x="49" y="45" width="140" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="65">Simple-template-id</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m78 0 h10 m0 0 h62 m-180 0 h20 m160 0 h20 m-200 0 q10 0 10 10 m180 0 q0 -10 10 -10 m-190 10 v24 m180 0 v-24 m-180 24 q0 10 10 10 m160 0 q10 0 10 -10 m-170 10 h10 m140 0 h10 m23 -44 h-3"></svg:path>
<polygon points="229 17 237 13 237 21"></polygon>
<polygon points="229 17 221 13 221 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Class-name" title="Class-name">Class-name</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div>
<div> | <a href="#Simple-template-id" title="Simple-template-id">Simple-template-id</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Class-head-name" title="Class-head-name">Class-head-name</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Class-or-decltype" title="Class-or-decltype">Class-or-decltype</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Declarator-id" title="Declarator-id">Declarator-id</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Type-name" title="Type-name">Type-name</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Unqualified-id" title="Unqualified-id">Unqualified-id</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Enum-name">Enum-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="137" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="31" y="3" width="78" height="32"></rect>
<rect x="29" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="127 17 135 13 135 21"></polygon>
<polygon points="127 17 119 13 119 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Enum-name" title="Enum-name">Enum-name</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Type-name" title="Type-name">Type-name</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Template-name">Template-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="137" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="31" y="3" width="78" height="32"></rect>
<rect x="29" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="127 17 135 13 135 21"></polygon>
<polygon points="127 17 119 13 119 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Template-name" title="Template-name">Template-name</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Simple-template-id" title="Simple-template-id">Simple-template-id</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Translation-unit">Translation-unit:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="219" height="57">
<polygon points="9 5 1 1 1 9"></polygon>
<polygon points="17 5 9 1 9 9"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Declaration-seq" xlink:title="Declaration-seq">
<rect x="51" y="23" width="120" height="32"></rect>
<rect x="49" y="21" width="120" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="41">Declaration-seq</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 5 h2 m20 0 h10 m0 0 h130 m-160 0 h20 m140 0 h20 m-180 0 q10 0 10 10 m160 0 q0 -10 10 -10 m-170 10 v12 m160 0 v-12 m-160 12 q0 10 10 10 m140 0 q10 0 10 -10 m-150 10 h10 m120 0 h10 m23 -32 h-3"></svg:path>
<polygon points="209 5 217 1 217 9"></polygon>
<polygon points="209 5 201 1 201 9"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Translation-unit" title="Translation-unit">Translation-unit</a></div>
<div> ::= <a href="#Declaration-seq" title="Declaration-seq">Declaration-seq</a>?</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#StartSymbol" title="StartSymbol">StartSymbol</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Primary-expression">Primary-expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="281" height="213">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Literal" xlink:title="Literal">
<rect x="51" y="3" width="60" height="32"></rect>
<rect x="49" y="1" width="60" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Literal</text></a><rect x="51" y="47" width="44" height="32" rx="10"></rect>
<rect x="49" y="45" width="44" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="65">this</text>
<rect x="51" y="91" width="26" height="32" rx="10"></rect>
<rect x="49" y="89" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="109">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="97" y="91" width="90" height="32"></rect>
<rect x="95" y="89" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="105" y="109">Expression</text></a><rect x="207" y="91" width="26" height="32" rx="10"></rect>
<rect x="205" y="89" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="215" y="109">)</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Id-expression" xlink:title="Id-expression">
<rect x="51" y="135" width="108" height="32"></rect>
<rect x="49" y="133" width="108" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="153">Id-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Lambda-expression" xlink:title="Lambda-expression">
<rect x="51" y="179" width="146" height="32"></rect>
<rect x="49" y="177" width="146" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="197">Lambda-expression</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m60 0 h10 m0 0 h122 m-222 0 h20 m202 0 h20 m-242 0 q10 0 10 10 m222 0 q0 -10 10 -10 m-232 10 v24 m222 0 v-24 m-222 24 q0 10 10 10 m202 0 q10 0 10 -10 m-212 10 h10 m44 0 h10 m0 0 h138 m-212 -10 v20 m222 0 v-20 m-222 20 v24 m222 0 v-24 m-222 24 q0 10 10 10 m202 0 q10 0 10 -10 m-212 10 h10 m26 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m26 0 h10 m-212 -10 v20 m222 0 v-20 m-222 20 v24 m222 0 v-24 m-222 24 q0 10 10 10 m202 0 q10 0 10 -10 m-212 10 h10 m108 0 h10 m0 0 h74 m-212 -10 v20 m222 0 v-20 m-222 20 v24 m222 0 v-24 m-222 24 q0 10 10 10 m202 0 q10 0 10 -10 m-212 10 h10 m146 0 h10 m0 0 h36 m23 -176 h-3"></svg:path>
<polygon points="271 17 279 13 279 21"></polygon>
<polygon points="271 17 263 13 263 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Primary-expression" title="Primary-expression">Primary-expression</a></div>
<div> ::= <a href="#Literal" title="Literal">Literal</a></div>
<div> | 'this'</div>
<div> | '(' <a href="#Expression" title="Expression">Expression</a> ')'</div>
<div> | <a href="#Id-expression" title="Id-expression">Id-expression</a></div>
<div> | <a href="#Lambda-expression" title="Lambda-expression">Lambda-expression</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Postfix-expression" title="Postfix-expression">Postfix-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Id-expression">Id-expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="207" height="81">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Unqualified-id" xlink:title="Unqualified-id">
<rect x="51" y="3" width="108" height="32"></rect>
<rect x="49" y="1" width="108" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Unqualified-id</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Qualified-id" xlink:title="Qualified-id">
<rect x="51" y="47" width="92" height="32"></rect>
<rect x="49" y="45" width="92" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="65">Qualified-id</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m108 0 h10 m-148 0 h20 m128 0 h20 m-168 0 q10 0 10 10 m148 0 q0 -10 10 -10 m-158 10 v24 m148 0 v-24 m-148 24 q0 10 10 10 m128 0 q10 0 10 -10 m-138 10 h10 m92 0 h10 m0 0 h16 m23 -44 h-3"></svg:path>
<polygon points="197 17 205 13 205 21"></polygon>
<polygon points="197 17 189 13 189 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Id-expression" title="Id-expression">Id-expression</a></div>
<div> ::= <a href="#Unqualified-id" title="Unqualified-id">Unqualified-id</a></div>
<div> | <a href="#Qualified-id" title="Qualified-id">Qualified-id</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Declarator-id" title="Declarator-id">Declarator-id</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Postfix-expression" title="Postfix-expression">Postfix-expression</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Primary-expression" title="Primary-expression">Primary-expression</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Template-argument" title="Template-argument">Template-argument</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Type-parameter" title="Type-parameter">Type-parameter</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Unqualified-id">Unqualified-id:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="321" height="257">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="51" y="3" width="78" height="32"></rect>
<rect x="49" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Identifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Operator-function-id" xlink:title="Operator-function-id">
<rect x="51" y="47" width="148" height="32"></rect>
<rect x="49" y="45" width="148" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="65">Operator-function-id</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Conversion-function-id" xlink:title="Conversion-function-id">
<rect x="51" y="91" width="164" height="32"></rect>
<rect x="49" y="89" width="164" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="109">Conversion-function-id</text></a><rect x="51" y="135" width="30" height="32" rx="10"></rect>
<rect x="49" y="133" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="153">~</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Class-name" xlink:title="Class-name">
<rect x="121" y="135" width="94" height="32"></rect>
<rect x="119" y="133" width="94" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="153">Class-name</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Decltype-specifier" xlink:title="Decltype-specifier">
<rect x="121" y="179" width="132" height="32"></rect>
<rect x="119" y="177" width="132" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="197">Decltype-specifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Template-id" xlink:title="Template-id">
<rect x="51" y="223" width="96" height="32"></rect>
<rect x="49" y="221" width="96" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="241">Template-id</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m78 0 h10 m0 0 h144 m-262 0 h20 m242 0 h20 m-282 0 q10 0 10 10 m262 0 q0 -10 10 -10 m-272 10 v24 m262 0 v-24 m-262 24 q0 10 10 10 m242 0 q10 0 10 -10 m-252 10 h10 m148 0 h10 m0 0 h74 m-252 -10 v20 m262 0 v-20 m-262 20 v24 m262 0 v-24 m-262 24 q0 10 10 10 m242 0 q10 0 10 -10 m-252 10 h10 m164 0 h10 m0 0 h58 m-252 -10 v20 m262 0 v-20 m-262 20 v24 m262 0 v-24 m-262 24 q0 10 10 10 m242 0 q10 0 10 -10 m-252 10 h10 m30 0 h10 m20 0 h10 m94 0 h10 m0 0 h38 m-172 0 h20 m152 0 h20 m-192 0 q10 0 10 10 m172 0 q0 -10 10 -10 m-182 10 v24 m172 0 v-24 m-172 24 q0 10 10 10 m152 0 q10 0 10 -10 m-162 10 h10 m132 0 h10 m-232 -54 v20 m262 0 v-20 m-262 20 v68 m262 0 v-68 m-262 68 q0 10 10 10 m242 0 q10 0 10 -10 m-252 10 h10 m96 0 h10 m0 0 h126 m23 -220 h-3"></svg:path>
<polygon points="311 17 319 13 319 21"></polygon>
<polygon points="311 17 303 13 303 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Unqualified-id" title="Unqualified-id">Unqualified-id</a></div>
<div> ::= <a href="#Identifier" title="Identifier">Identifier</a></div>
<div> | <a href="#Operator-function-id" title="Operator-function-id">Operator-function-id</a></div>
<div> | <a href="#Conversion-function-id" title="Conversion-function-id">Conversion-function-id</a></div>
<div> | '~' ( <a href="#Class-name" title="Class-name">Class-name</a> | <a href="#Decltype-specifier" title="Decltype-specifier">Decltype-specifier</a> )</div>
<div> | <a href="#Template-id" title="Template-id">Template-id</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Id-expression" title="Id-expression">Id-expression</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Qualified-id" title="Qualified-id">Qualified-id</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Using-declaration" title="Using-declaration">Using-declaration</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Qualified-id">Qualified-id:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="531" height="245">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Nested-name-specifier" xlink:title="Nested-name-specifier">
<rect x="51" y="3" width="164" height="32"></rect>
<rect x="49" y="1" width="164" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Nested-name-specifier</text></a><rect x="255" y="35" width="80" height="32" rx="10"></rect>
<rect x="253" y="33" width="80" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="263" y="53">template</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Unqualified-id" xlink:title="Unqualified-id">
<rect x="375" y="3" width="108" height="32"></rect>
<rect x="373" y="1" width="108" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="383" y="21">Unqualified-id</text></a><rect x="51" y="79" width="30" height="32" rx="10"></rect>
<rect x="49" y="77" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="97">::</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="121" y="79" width="78" height="32"></rect>
<rect x="119" y="77" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="97">Identifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Operator-function-id" xlink:title="Operator-function-id">
<rect x="121" y="123" width="148" height="32"></rect>
<rect x="119" y="121" width="148" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="141">Operator-function-id</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Literal-operator-id" xlink:title="Literal-operator-id">
<rect x="121" y="167" width="136" height="32"></rect>
<rect x="119" y="165" width="136" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="185">Literal-operator-id</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Template-id" xlink:title="Template-id">
<rect x="121" y="211" width="96" height="32"></rect>
<rect x="119" y="209" width="96" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="229">Template-id</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m164 0 h10 m20 0 h10 m0 0 h90 m-120 0 h20 m100 0 h20 m-140 0 q10 0 10 10 m120 0 q0 -10 10 -10 m-130 10 v12 m120 0 v-12 m-120 12 q0 10 10 10 m100 0 q10 0 10 -10 m-110 10 h10 m80 0 h10 m20 -32 h10 m108 0 h10 m-472 0 h20 m452 0 h20 m-492 0 q10 0 10 10 m472 0 q0 -10 10 -10 m-482 10 v56 m472 0 v-56 m-472 56 q0 10 10 10 m452 0 q10 0 10 -10 m-462 10 h10 m30 0 h10 m20 0 h10 m78 0 h10 m0 0 h70 m-188 0 h20 m168 0 h20 m-208 0 q10 0 10 10 m188 0 q0 -10 10 -10 m-198 10 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m148 0 h10 m-178 -10 v20 m188 0 v-20 m-188 20 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m136 0 h10 m0 0 h12 m-178 -10 v20 m188 0 v-20 m-188 20 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m96 0 h10 m0 0 h52 m20 -132 h194 m23 -76 h-3"></svg:path>
<polygon points="521 17 529 13 529 21"></polygon>
<polygon points="521 17 513 13 513 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Qualified-id" title="Qualified-id">Qualified-id</a></div>
<div> ::= <a href="#Nested-name-specifier" title="Nested-name-specifier">Nested-name-specifier</a> 'template'? <a href="#Unqualified-id" title="Unqualified-id">Unqualified-id</a></div>
<div> | '::' ( <a href="#Identifier" title="Identifier">Identifier</a> | <a href="#Operator-function-id" title="Operator-function-id">Operator-function-id</a> | <a href="#Literal-operator-id" title="Literal-operator-id">Literal-operator-id</a> | <a href="#Template-id" title="Template-id">Template-id</a> )</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Id-expression" title="Id-expression">Id-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Nested-name-specifier">Nested-name-specifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="573" height="277">
<polygon points="9 137 1 133 1 141"></polygon>
<polygon points="17 137 9 133 9 141"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-name" xlink:title="Type-name">
<rect x="51" y="155" width="90" height="32"></rect>
<rect x="49" y="153" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="173">Type-name</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Namespace-name" xlink:title="Namespace-name">
<rect x="51" y="199" width="134" height="32"></rect>
<rect x="49" y="197" width="134" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="217">Namespace-name</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Decltype-specifier" xlink:title="Decltype-specifier">
<rect x="51" y="243" width="132" height="32"></rect>
<rect x="49" y="241" width="132" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="261">Decltype-specifier</text></a><rect x="245" y="123" width="30" height="32" rx="10"></rect>
<rect x="243" y="121" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="253" y="141">::</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="245" y="79" width="78" height="32"></rect>
<rect x="243" y="77" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="253" y="97">Identifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Simple-template-id" xlink:title="Simple-template-id">
<rect x="245" y="3" width="140" height="32"></rect>
<rect x="243" y="1" width="140" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="253" y="21">Simple-template-id</text></a><rect x="425" y="35" width="80" height="32" rx="10"></rect>
<rect x="423" y="33" width="80" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="433" y="53">template</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 137 h2 m20 0 h10 m0 0 h144 m-174 0 h20 m154 0 h20 m-194 0 q10 0 10 10 m174 0 q0 -10 10 -10 m-184 10 v12 m174 0 v-12 m-174 12 q0 10 10 10 m154 0 q10 0 10 -10 m-164 10 h10 m90 0 h10 m0 0 h44 m-164 -10 v20 m174 0 v-20 m-174 20 v24 m174 0 v-24 m-174 24 q0 10 10 10 m154 0 q10 0 10 -10 m-164 10 h10 m134 0 h10 m-164 -10 v20 m174 0 v-20 m-174 20 v24 m174 0 v-24 m-174 24 q0 10 10 10 m154 0 q10 0 10 -10 m-164 10 h10 m132 0 h10 m0 0 h2 m40 -120 h10 m30 0 h10 m0 0 h250 m-320 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m300 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-300 0 h10 m78 0 h10 m0 0 h202 m-310 10 l0 -76 q0 -10 10 -10 m310 86 l0 -76 q0 -10 -10 -10 m-300 0 h10 m140 0 h10 m20 0 h10 m0 0 h90 m-120 0 h20 m100 0 h20 m-140 0 q10 0 10 10 m120 0 q0 -10 10 -10 m-130 10 v12 m120 0 v-12 m-120 12 q0 10 10 10 m100 0 q10 0 10 -10 m-110 10 h10 m80 0 h10 m43 88 h-3"></svg:path>
<polygon points="563 137 571 133 571 141"></polygon>
<polygon points="563 137 555 133 555 141"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Nested-name-specifier" title="Nested-name-specifier">Nested-name-specifier</a></div>
<div> ::= ( <a href="#Type-name" title="Type-name">Type-name</a> | <a href="#Namespace-name" title="Namespace-name">Namespace-name</a> | <a href="#Decltype-specifier" title="Decltype-specifier">Decltype-specifier</a> )? '::' ( ( <a href="#Identifier" title="Identifier">Identifier</a> | 'template'? <a href="#Simple-template-id" title="Simple-template-id">Simple-template-id</a> ) '::' )*</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Class-head-name" title="Class-head-name">Class-head-name</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Class-or-decltype" title="Class-or-decltype">Class-or-decltype</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Declarator-id" title="Declarator-id">Declarator-id</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Elaborated-type-specifier" title="Elaborated-type-specifier">Elaborated-type-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Enum-head" title="Enum-head">Enum-head</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#GNU-elaborated-template" title="GNU-elaborated-template">GNU-elaborated-template</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Pseudo-destructor-name" title="Pseudo-destructor-name">Pseudo-destructor-name</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Ptr-operator" title="Ptr-operator">Ptr-operator</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Qualified-id" title="Qualified-id">Qualified-id</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Qualified-namespace-specifier" title="Qualified-namespace-specifier">Qualified-namespace-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Simple-type-specifier" title="Simple-type-specifier">Simple-type-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Typename-specifier" title="Typename-specifier">Typename-specifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Using-declaration" title="Using-declaration">Using-declaration</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Using-directive" title="Using-directive">Using-directive</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Lambda-expression">Lambda-expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="579" height="69">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Lambda-introducer" xlink:title="Lambda-introducer">
<rect x="31" y="3" width="140" height="32"></rect>
<rect x="29" y="1" width="140" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Lambda-introducer</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Lambda-declarator" xlink:title="Lambda-declarator">
<rect x="211" y="35" width="140" height="32"></rect>
<rect x="209" y="33" width="140" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="219" y="53">Lambda-declarator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Compound-statement" xlink:title="Compound-statement">
<rect x="391" y="3" width="160" height="32"></rect>
<rect x="389" y="1" width="160" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="399" y="21">Compound-statement</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m140 0 h10 m20 0 h10 m0 0 h150 m-180 0 h20 m160 0 h20 m-200 0 q10 0 10 10 m180 0 q0 -10 10 -10 m-190 10 v12 m180 0 v-12 m-180 12 q0 10 10 10 m160 0 q10 0 10 -10 m-170 10 h10 m140 0 h10 m20 -32 h10 m160 0 h10 m3 0 h-3"></svg:path>
<polygon points="569 17 577 13 577 21"></polygon>
<polygon points="569 17 561 13 561 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Lambda-expression" title="Lambda-expression">Lambda-expression</a></div>
<div> ::= <a href="#Lambda-introducer" title="Lambda-introducer">Lambda-introducer</a> <a href="#Lambda-declarator" title="Lambda-declarator">Lambda-declarator</a>? <a href="#Compound-statement" title="Compound-statement">Compound-statement</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Primary-expression" title="Primary-expression">Primary-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Lambda-introducer">Lambda-introducer:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="315" height="69">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="31" y="3" width="26" height="32" rx="10"></rect>
<rect x="29" y="1" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="39" y="21">[</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Lambda-capture" xlink:title="Lambda-capture">
<rect x="97" y="35" width="124" height="32"></rect>
<rect x="95" y="33" width="124" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="105" y="53">Lambda-capture</text></a><rect x="261" y="3" width="26" height="32" rx="10"></rect>
<rect x="259" y="1" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="269" y="21">]</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m26 0 h10 m20 0 h10 m0 0 h134 m-164 0 h20 m144 0 h20 m-184 0 q10 0 10 10 m164 0 q0 -10 10 -10 m-174 10 v12 m164 0 v-12 m-164 12 q0 10 10 10 m144 0 q10 0 10 -10 m-154 10 h10 m124 0 h10 m20 -32 h10 m26 0 h10 m3 0 h-3"></svg:path>
<polygon points="305 17 313 13 313 21"></polygon>
<polygon points="305 17 297 13 297 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Lambda-introducer" title="Lambda-introducer">Lambda-introducer</a></div>
<div> ::= '[' <a href="#Lambda-capture" title="Lambda-capture">Lambda-capture</a>? ']'</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Lambda-expression" title="Lambda-expression">Lambda-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Lambda-capture">Lambda-capture:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="417" height="113">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Capture-default" xlink:title="Capture-default">
<rect x="51" y="3" width="120" height="32"></rect>
<rect x="49" y="1" width="120" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Capture-default</text></a><rect x="211" y="35" width="24" height="32" rx="10"></rect>
<rect x="209" y="33" width="24" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="219" y="53">,</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Capture-list" xlink:title="Capture-list">
<rect x="255" y="35" width="94" height="32"></rect>
<rect x="253" y="33" width="94" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="263" y="53">Capture-list</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Capture-list" xlink:title="Capture-list">
<rect x="51" y="79" width="94" height="32"></rect>
<rect x="49" y="77" width="94" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="97">Capture-list</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m120 0 h10 m20 0 h10 m0 0 h148 m-178 0 h20 m158 0 h20 m-198 0 q10 0 10 10 m178 0 q0 -10 10 -10 m-188 10 v12 m178 0 v-12 m-178 12 q0 10 10 10 m158 0 q10 0 10 -10 m-168 10 h10 m24 0 h10 m0 0 h10 m94 0 h10 m-338 -32 h20 m338 0 h20 m-378 0 q10 0 10 10 m358 0 q0 -10 10 -10 m-368 10 v56 m358 0 v-56 m-358 56 q0 10 10 10 m338 0 q10 0 10 -10 m-348 10 h10 m94 0 h10 m0 0 h224 m23 -76 h-3"></svg:path>
<polygon points="407 17 415 13 415 21"></polygon>
<polygon points="407 17 399 13 399 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Lambda-capture" title="Lambda-capture">Lambda-capture</a></div>
<div> ::= <a href="#Capture-default" title="Capture-default">Capture-default</a> ( ',' <a href="#Capture-list" title="Capture-list">Capture-list</a> )?</div>
<div> | <a href="#Capture-list" title="Capture-list">Capture-list</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Lambda-introducer" title="Lambda-introducer">Lambda-introducer</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Capture-default">Capture-default:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="129" height="81">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="51" y="3" width="30" height="32" rx="10"></rect>
<rect x="49" y="1" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="21">&</text>
<rect x="51" y="47" width="30" height="32" rx="10"></rect>
<rect x="49" y="45" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="65">=</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m30 0 h10 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v24 m70 0 v-24 m-70 24 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m23 -44 h-3"></svg:path>
<polygon points="119 17 127 13 127 21"></polygon>
<polygon points="119 17 111 13 111 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Capture-default" title="Capture-default">Capture-default</a></div>
<div> ::= '&'</div>
<div> | '='</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Lambda-capture" title="Lambda-capture">Lambda-capture</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Capture-list">Capture-list:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="261" height="113">
<polygon points="9 61 1 57 1 65"></polygon>
<polygon points="17 61 9 57 9 65"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Capture" xlink:title="Capture">
<rect x="51" y="47" width="70" height="32"></rect>
<rect x="49" y="45" width="70" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="65">Capture</text></a><rect x="161" y="79" width="32" height="32" rx="10"></rect>
<rect x="159" y="77" width="32" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="169" y="97">...</text>
<rect x="51" y="3" width="24" height="32" rx="10"></rect>
<rect x="49" y="1" width="24" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="21">,</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m20 0 h10 m70 0 h10 m20 0 h10 m0 0 h42 m-72 0 h20 m52 0 h20 m-92 0 q10 0 10 10 m72 0 q0 -10 10 -10 m-82 10 v12 m72 0 v-12 m-72 12 q0 10 10 10 m52 0 q10 0 10 -10 m-62 10 h10 m32 0 h10 m-182 -32 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m182 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-182 0 h10 m24 0 h10 m0 0 h138 m23 44 h-3"></svg:path>
<polygon points="251 61 259 57 259 65"></polygon>
<polygon points="251 61 243 57 243 65"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Capture-list" title="Capture-list">Capture-list</a></div>
<div> ::= <a href="#Capture" title="Capture">Capture</a> '...'? ( ',' <a href="#Capture" title="Capture">Capture</a> '...'? )*</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Lambda-capture" title="Lambda-capture">Lambda-capture</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Capture">Capture:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="215" height="81">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Simple-capture" xlink:title="Simple-capture">
<rect x="51" y="3" width="116" height="32"></rect>
<rect x="49" y="1" width="116" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Simple-capture</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Init-capture" xlink:title="Init-capture">
<rect x="51" y="47" width="94" height="32"></rect>
<rect x="49" y="45" width="94" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="65">Init-capture</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m116 0 h10 m-156 0 h20 m136 0 h20 m-176 0 q10 0 10 10 m156 0 q0 -10 10 -10 m-166 10 v24 m156 0 v-24 m-156 24 q0 10 10 10 m136 0 q10 0 10 -10 m-146 10 h10 m94 0 h10 m0 0 h22 m23 -44 h-3"></svg:path>
<polygon points="205 17 213 13 213 21"></polygon>
<polygon points="205 17 197 13 197 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Capture" title="Capture">Capture</a> ::= <a href="#Simple-capture" title="Simple-capture">Simple-capture</a></div>
<div> | <a href="#Init-capture" title="Init-capture">Init-capture</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Capture-list" title="Capture-list">Capture-list</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Simple-capture">Simple-capture:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="267" height="113">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="71" y="35" width="30" height="32" rx="10"></rect>
<rect x="69" y="33" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="79" y="53">&</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="141" y="3" width="78" height="32"></rect>
<rect x="139" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="149" y="21">Identifier</text></a><rect x="51" y="79" width="44" height="32" rx="10"></rect>
<rect x="49" y="77" width="44" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="97">this</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m0 0 h40 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v12 m70 0 v-12 m-70 12 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m20 -32 h10 m78 0 h10 m-208 0 h20 m188 0 h20 m-228 0 q10 0 10 10 m208 0 q0 -10 10 -10 m-218 10 v56 m208 0 v-56 m-208 56 q0 10 10 10 m188 0 q10 0 10 -10 m-198 10 h10 m44 0 h10 m0 0 h124 m23 -76 h-3"></svg:path>
<polygon points="257 17 265 13 265 21"></polygon>
<polygon points="257 17 249 13 249 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Simple-capture" title="Simple-capture">Simple-capture</a></div>
<div> ::= '&'? <a href="#Identifier" title="Identifier">Identifier</a></div>
<div> | 'this'</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Capture" title="Capture">Capture</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Init-capture">Init-capture:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="325" height="69">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="51" y="35" width="30" height="32" rx="10"></rect>
<rect x="49" y="33" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="53">&</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="121" y="3" width="78" height="32"></rect>
<rect x="119" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="129" y="21">Identifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Initializer" xlink:title="Initializer">
<rect x="219" y="3" width="78" height="32"></rect>
<rect x="217" y="1" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="227" y="21">Initializer</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m0 0 h40 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v12 m70 0 v-12 m-70 12 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m20 -32 h10 m78 0 h10 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path>
<polygon points="315 17 323 13 323 21"></polygon>
<polygon points="315 17 307 13 307 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Init-capture" title="Init-capture">Init-capture</a></div>
<div> ::= '&'? <a href="#Identifier" title="Identifier">Identifier</a> <a href="#Initializer" title="Initializer">Initializer</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Capture" title="Capture">Capture</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Lambda-declarator">Lambda-declarator:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="935" height="155">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="31" y="3" width="26" height="32" rx="10"></rect>
<rect x="29" y="1" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="39" y="21">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Parameter-declaration-clause" xlink:title="Parameter-declaration-clause">
<rect x="77" y="3" width="208" height="32"></rect>
<rect x="75" y="1" width="208" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="85" y="21">Parameter-declaration-clause</text></a><rect x="305" y="3" width="26" height="32" rx="10"></rect>
<rect x="303" y="1" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="313" y="21">)</text>
<rect x="371" y="35" width="74" height="32" rx="10"></rect>
<rect x="369" y="33" width="74" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="379" y="53">mutable</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Exception-specification" xlink:title="Exception-specification">
<rect x="505" y="35" width="166" height="32"></rect>
<rect x="503" y="33" width="166" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="513" y="53">Exception-specification</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Attribute-specifier-seq" xlink:title="Attribute-specifier-seq">
<rect x="731" y="35" width="162" height="32"></rect>
<rect x="729" y="33" width="162" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="739" y="53">Attribute-specifier-seq</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Trailing-return-type" xlink:title="Trailing-return-type">
<rect x="743" y="121" width="144" height="32"></rect>
<rect x="741" y="119" width="144" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="751" y="139">Trailing-return-type</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m26 0 h10 m0 0 h10 m208 0 h10 m0 0 h10 m26 0 h10 m20 0 h10 m0 0 h84 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v12 m114 0 v-12 m-114 12 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m40 -32 h10 m0 0 h176 m-206 0 h20 m186 0 h20 m-226 0 q10 0 10 10 m206 0 q0 -10 10 -10 m-216 10 v12 m206 0 v-12 m-206 12 q0 10 10 10 m186 0 q10 0 10 -10 m-196 10 h10 m166 0 h10 m40 -32 h10 m0 0 h172 m-202 0 h20 m182 0 h20 m-222 0 q10 0 10 10 m202 0 q0 -10 10 -10 m-212 10 v12 m202 0 v-12 m-202 12 q0 10 10 10 m182 0 q10 0 10 -10 m-192 10 h10 m162 0 h10 m22 -32 l2 0 m2 0 l2 0 m2 0 l2 0 m-234 86 l2 0 m2 0 l2 0 m2 0 l2 0 m22 0 h10 m0 0 h154 m-184 0 h20 m164 0 h20 m-204 0 q10 0 10 10 m184 0 q0 -10 10 -10 m-194 10 v12 m184 0 v-12 m-184 12 q0 10 10 10 m164 0 q10 0 10 -10 m-174 10 h10 m144 0 h10 m23 -32 h-3"></svg:path>
<polygon points="925 103 933 99 933 107"></polygon>
<polygon points="925 103 917 99 917 107"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Lambda-declarator" title="Lambda-declarator">Lambda-declarator</a></div>
<div> ::= '(' <a href="#Parameter-declaration-clause" title="Parameter-declaration-clause">Parameter-declaration-clause</a> ')' 'mutable'? <a href="#Exception-specification" title="Exception-specification">Exception-specification</a>? <a href="#Attribute-specifier-seq" title="Attribute-specifier-seq">Attribute-specifier-seq</a>? <a href="#Trailing-return-type" title="Trailing-return-type">Trailing-return-type</a>?</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Lambda-expression" title="Lambda-expression">Lambda-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Postfix-expression">Postfix-expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="691" height="847">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Primary-expression" xlink:title="Primary-expression">
<rect x="51" y="3" width="142" height="32"></rect>
<rect x="49" y="1" width="142" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="59" y="21">Primary-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Simple-type-specifier" xlink:title="Simple-type-specifier">
<rect x="71" y="47" width="154" height="32"></rect>
<rect x="69" y="45" width="154" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="79" y="65">Simple-type-specifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Typename-specifier" xlink:title="Typename-specifier">
<rect x="71" y="91" width="144" height="32"></rect>
<rect x="69" y="89" width="144" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="79" y="109">Typename-specifier</text></a><rect x="285" y="47" width="26" height="32" rx="10"></rect>
<rect x="283" y="45" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="293" y="65">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression-list" xlink:title="Expression-list">
<rect x="351" y="79" width="114" height="32"></rect>
<rect x="349" y="77" width="114" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="359" y="97">Expression-list</text></a><rect x="505" y="47" width="26" height="32" rx="10"></rect>
<rect x="503" y="45" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="513" y="65">)</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Braced-init-list" xlink:title="Braced-init-list">
<rect x="285" y="123" width="112" height="32"></rect>
<rect x="283" y="121" width="112" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="293" y="141">Braced-init-list</text></a><rect x="91" y="167" width="112" height="32" rx="10"></rect>
<rect x="89" y="165" width="112" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="99" y="185">dynamic_cast</text>
<rect x="91" y="211" width="94" height="32" rx="10"></rect>
<rect x="89" y="209" width="94" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="99" y="229">static_cast</text>
<rect x="91" y="255" width="130" height="32" rx="10"></rect>
<rect x="89" y="253" width="130" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="99" y="273">reinterpret_cast</text>
<rect x="91" y="299" width="92" height="32" rx="10"></rect>
<rect x="89" y="297" width="92" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="99" y="317">const_cast</text>
<rect x="261" y="167" width="30" height="32" rx="10"></rect>
<rect x="259" y="165" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="269" y="185"><</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-id" xlink:title="Type-id">
<rect x="311" y="167" width="66" height="32"></rect>
<rect x="309" y="165" width="66" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="319" y="185">Type-id</text></a><rect x="397" y="167" width="30" height="32" rx="10"></rect>
<rect x="395" y="165" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="405" y="185">></text>
<rect x="447" y="167" width="26" height="32" rx="10"></rect>
<rect x="445" y="165" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="455" y="185">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="493" y="167" width="90" height="32"></rect>
<rect x="491" y="165" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="501" y="185">Expression</text></a><rect x="71" y="343" width="62" height="32" rx="10"></rect>
<rect x="69" y="341" width="62" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="79" y="361">typeid</text>
<rect x="153" y="343" width="26" height="32" rx="10"></rect>
<rect x="151" y="341" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="161" y="361">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="219" y="343" width="90" height="32"></rect>
<rect x="217" y="341" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="227" y="361">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-id" xlink:title="Type-id">
<rect x="219" y="387" width="66" height="32"></rect>
<rect x="217" y="385" width="66" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="227" y="405">Type-id</text></a><rect x="623" y="167" width="26" height="32" rx="10"></rect>
<rect x="621" y="165" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="631" y="185">)</text>
<rect x="219" y="469" width="26" height="32" rx="10"></rect>
<rect x="217" y="467" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="227" y="487">[</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression">
<rect x="285" y="469" width="90" height="32"></rect>
<rect x="283" y="467" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="293" y="487">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Braced-init-list" xlink:title="Braced-init-list">
<rect x="285" y="513" width="112" height="32"></rect>
<rect x="283" y="511" width="112" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="293" y="531">Braced-init-list</text></a><rect x="437" y="469" width="26" height="32" rx="10"></rect>
<rect x="435" y="467" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="445" y="487">]</text>
<rect x="219" y="557" width="26" height="32" rx="10"></rect>
<rect x="217" y="555" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="227" y="575">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression-list" xlink:title="Expression-list">
<rect x="285" y="589" width="114" height="32"></rect>
<rect x="283" y="587" width="114" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="293" y="607">Expression-list</text></a><rect x="439" y="557" width="26" height="32" rx="10"></rect>
<rect x="437" y="555" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="447" y="575">)</text>
<rect x="239" y="633" width="24" height="32" rx="10"></rect>
<rect x="237" y="631" width="24" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="247" y="651">.</text>
<rect x="239" y="677" width="36" height="32" rx="10"></rect>
<rect x="237" y="675" width="36" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="247" y="695">-></text>
<rect x="355" y="665" width="80" height="32" rx="10"></rect>
<rect x="353" y="663" width="80" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="363" y="683">template</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Id-expression" xlink:title="Id-expression">
<rect x="475" y="633" width="108" height="32"></rect>
<rect x="473" y="631" width="108" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="483" y="651">Id-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Pseudo-destructor-name" xlink:title="Pseudo-destructor-name">
<rect x="335" y="709" width="178" height="32"></rect>
<rect x="333" y="707" width="178" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="343" y="727">Pseudo-destructor-name</text></a><rect x="219" y="753" width="40" height="32" rx="10"></rect>
<rect x="217" y="751" width="40" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="227" y="771">++</text>
<rect x="219" y="797" width="32" height="32" rx="10"></rect>
<rect x="217" y="795" width="32" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="227" y="815">--</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m142 0 h10 m0 0 h456 m-638 0 h20 m618 0 h20 m-658 0 q10 0 10 10 m638 0 q0 -10 10 -10 m-648 10 v24 m638 0 v-24 m-638 24 q0 10 10 10 m618 0 q10 0 10 -10 m-608 10 h10 m154 0 h10 m-194 0 h20 m174 0 h20 m-214 0 q10 0 10 10 m194 0 q0 -10 10 -10 m-204 10 v24 m194 0 v-24 m-194 24 q0 10 10 10 m174 0 q10 0 10 -10 m-184 10 h10 m144 0 h10 m0 0 h10 m40 -44 h10 m26 0 h10 m20 0 h10 m0 0 h124 m-154 0 h20 m134 0 h20 m-174 0 q10 0 10 10 m154 0 q0 -10 10 -10 m-164 10 v12 m154 0 v-12 m-154 12 q0 10 10 10 m134 0 q10 0 10 -10 m-144 10 h10 m114 0 h10 m20 -32 h10 m26 0 h10 m-286 0 h20 m266 0 h20 m-306 0 q10 0 10 10 m286 0 q0 -10 10 -10 m-296 10 v56 m286 0 v-56 m-286 56 q0 10 10 10 m266 0 q10 0 10 -10 m-276 10 h10 m112 0 h10 m0 0 h134 m20 -76 h98 m-628 -10 v20 m638 0 v-20 m-638 20 v100 m638 0 v-100 m-638 100 q0 10 10 10 m618 0 q10 0 10 -10 m-588 10 h10 m112 0 h10 m0 0 h18 m-170 0 h20 m150 0 h20 m-190 0 q10 0 10 10 m170 0 q0 -10 10 -10 m-180 10 v24 m170 0 v-24 m-170 24 q0 10 10 10 m150 0 q10 0 10 -10 m-160 10 h10 m94 0 h10 m0 0 h36 m-160 -10 v20 m170 0 v-20 m-170 20 v24 m170 0 v-24 m-170 24 q0 10 10 10 m150 0 q10 0 10 -10 m-160 10 h10 m130 0 h10 m-160 -10 v20 m170 0 v-20 m-170 20 v24 m170 0 v-24 m-170 24 q0 10 10 10 m150 0 q10 0 10 -10 m-160 10 h10 m92 0 h10 m0 0 h38 m20 -132 h10 m30 0 h10 m0 0 h10 m66 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m90 0 h10 m-552 0 h20 m532 0 h20 m-572 0 q10 0 10 10 m552 0 q0 -10 10 -10 m-562 10 v156 m552 0 v-156 m-552 156 q0 10 10 10 m532 0 q10 0 10 -10 m-542 10 h10 m62 0 h10 m0 0 h10 m26 0 h10 m20 0 h10 m90 0 h10 m-130 0 h20 m110 0 h20 m-150 0 q10 0 10 10 m130 0 q0 -10 10 -10 m-140 10 v24 m130 0 v-24 m-130 24 q0 10 10 10 m110 0 q10 0 10 -10 m-120 10 h10 m66 0 h10 m0 0 h24 m20 -44 h254 m20 -176 h10 m26 0 h10 m22 -164 l2 0 m2 0 l2 0 m2 0 l2 0 m-554 466 l2 0 m2 0 l2 0 m2 0 l2 0 m62 0 h10 m26 0 h10 m20 0 h10 m90 0 h10 m0 0 h22 m-152 0 h20 m132 0 h20 m-172 0 q10 0 10 10 m152 0 q0 -10 10 -10 m-162 10 v24 m152 0 v-24 m-152 24 q0 10 10 10 m132 0 q10 0 10 -10 m-142 10 h10 m112 0 h10 m20 -44 h10 m26 0 h10 m0 0 h140 m-424 0 h20 m404 0 h20 m-444 0 q10 0 10 10 m424 0 q0 -10 10 -10 m-434 10 v68 m424 0 v-68 m-424 68 q0 10 10 10 m404 0 q10 0 10 -10 m-414 10 h10 m26 0 h10 m20 0 h10 m0 0 h124 m-154 0 h20 m134 0 h20 m-174 0 q10 0 10 10 m154 0 q0 -10 10 -10 m-164 10 v12 m154 0 v-12 m-154 12 q0 10 10 10 m134 0 q10 0 10 -10 m-144 10 h10 m114 0 h10 m20 -32 h10 m26 0 h10 m0 0 h138 m-414 -10 v20 m424 0 v-20 m-424 20 v56 m424 0 v-56 m-424 56 q0 10 10 10 m404 0 q10 0 10 -10 m-394 10 h10 m24 0 h10 m0 0 h12 m-76 0 h20 m56 0 h20 m-96 0 q10 0 10 10 m76 0 q0 -10 10 -10 m-86 10 v24 m76 0 v-24 m-76 24 q0 10 10 10 m56 0 q10 0 10 -10 m-66 10 h10 m36 0 h10 m60 -44 h10 m0 0 h90 m-120 0 h20 m100 0 h20 m-140 0 q10 0 10 10 m120 0 q0 -10 10 -10 m-130 10 v12 m120 0 v-12 m-120 12 q0 10 10 10 m100 0 q10 0 10 -10 m-110 10 h10 m80 0 h10 m20 -32 h10 m108 0 h10 m-288 0 h20 m268 0 h20 m-308 0 q10 0 10 10 m288 0 q0 -10 10 -10 m-298 10 v56 m288 0 v-56 m-288 56 q0 10 10 10 m268 0 q10 0 10 -10 m-278 10 h10 m178 0 h10 m0 0 h70 m-394 -86 v20 m424 0 v-20 m-424 20 v100 m424 0 v-100 m-424 100 q0 10 10 10 m404 0 q10 0 10 -10 m-414 10 h10 m40 0 h10 m0 0 h344 m-414 -10 v20 m424 0 v-20 m-424 20 v24 m424 0 v-24 m-424 24 q0 10 10 10 m404 0 q10 0 10 -10 m-414 10 h10 m32 0 h10 m0 0 h352 m-444 -328 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m444 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-444 0 h10 m0 0 h434 m-484 32 h20 m484 0 h20 m-524 0 q10 0 10 10 m504 0 q0 -10 10 -10 m-514 10 v342 m504 0 v-342 m-504 342 q0 10 10 10 m484 0 q10 0 10 -10 m-494 10 h10 m0 0 h474 m23 -362 h-3"></svg:path>
<polygon points="681 483 689 479 689 487"></polygon>
<polygon points="681 483 673 479 673 487"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Postfix-expression" title="Postfix-expression">Postfix-expression</a></div>
<div> ::= ( <a href="#Primary-expression" title="Primary-expression">Primary-expression</a> | ( <a href="#Simple-type-specifier" title="Simple-type-specifier">Simple-type-specifier</a> | <a href="#Typename-specifier" title="Typename-specifier">Typename-specifier</a> ) ( '(' <a href="#Expression-list" title="Expression-list">Expression-list</a>? ')' | <a href="#Braced-init-list" title="Braced-init-list">Braced-init-list</a> ) | ( ( 'dynamic_cast' | 'static_cast' | 'reinterpret_cast' | 'const_cast' ) '<'
<a href="#Type-id" title="Type-id">Type-id</a> '>' '(' <a href="#Expression" title="Expression">Expression</a> | 'typeid' '(' ( <a href="#Expression" title="Expression">Expression</a> | <a href="#Type-id" title="Type-id">Type-id</a> ) ) ')' ) ( '[' ( <a href="#Expression" title="Expression">Expression</a> | <a href="#Braced-init-list" title="Braced-init-list">Braced-init-list</a> ) ']' | '(' <a href="#Expression-list" title="Expression-list">Expression-list</a>? ')' | ( '.' | '->' ) ( 'template'? <a href="#Id-expression" title="Id-expression">Id-expression</a> | <a href="#Pseudo-destructor-name" title="Pseudo-destructor-name">Pseudo-destructor-name</a> ) | '++' | '--' )*</div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Unary-expression" title="Unary-expression">Unary-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Expression-list">Expression-list:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="161" height="37">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Initializer-list" xlink:title="Initializer-list">
<rect x="31" y="3" width="102" height="32"></rect>
<rect x="29" y="1" width="102" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="39" y="21">Initializer-list</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m102 0 h10 m3 0 h-3"></svg:path>
<polygon points="151 17 159 13 159 21"></polygon>
<polygon points="151 17 143 13 143 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Expression-list" title="Expression-list">Expression-list</a></div>
<div> ::= <a href="#Initializer-list" title="Initializer-list">Initializer-list</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Initializer" title="Initializer">Initializer</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Mem-initializer" title="Mem-initializer">Mem-initializer</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#New-initializer" title="New-initializer">New-initializer</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#New-placement" title="New-placement">New-placement</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#Postfix-expression" title="Postfix-expression">Postfix-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Pseudo-destructor-name">Pseudo-destructor-name:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="863" height="157">
<polygon points="9 17 1 13 1 21"></polygon>
<polygon points="17 17 9 13 9 21"></polygon>
<rect x="71" y="35" width="30" height="32" rx="10"></rect>
<rect x="69" y="33" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="79" y="53">::</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Nested-name-specifier" xlink:title="Nested-name-specifier">
<rect x="181" y="35" width="164" height="32"></rect>
<rect x="179" y="33" width="164" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="189" y="53">Nested-name-specifier</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-name" xlink:title="Type-name">
<rect x="405" y="35" width="90" height="32"></rect>
<rect x="403" y="33" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="413" y="53">Type-name</text></a><rect x="515" y="35" width="30" height="32" rx="10"></rect>
<rect x="513" y="33" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="523" y="53">::</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Nested-name-specifier" xlink:title="Nested-name-specifier">
<rect x="161" y="79" width="164" height="32"></rect>
<rect x="159" y="77" width="164" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="169" y="97">Nested-name-specifier</text></a><rect x="345" y="79" width="80" height="32" rx="10"></rect>
<rect x="343" y="77" width="80" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="353" y="97">template</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Simple-template-id" xlink:title="Simple-template-id">
<rect x="445" y="79" width="140" height="32"></rect>
<rect x="443" y="77" width="140" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="453" y="97">Simple-template-id</text></a><rect x="605" y="79" width="30" height="32" rx="10"></rect>
<rect x="603" y="77" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="613" y="97">::</text>
<rect x="675" y="3" width="30" height="32" rx="10"></rect>
<rect x="673" y="1" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="683" y="21">~</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-name" xlink:title="Type-name">
<rect x="725" y="3" width="90" height="32"></rect>
<rect x="723" y="1" width="90" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="733" y="21">Type-name</text></a><rect x="51" y="123" width="30" height="32" rx="10"></rect>
<rect x="49" y="121" width="30" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="141">~</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Decltype-specifier" xlink:title="Decltype-specifier">
<rect x="101" y="123" width="132" height="32"></rect>
<rect x="99" y="121" width="132" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="109" y="141">Decltype-specifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m40 0 h10 m0 0 h40 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v12 m70 0 v-12 m-70 12 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m60 -32 h10 m0 0 h174 m-204 0 h20 m184 0 h20 m-224 0 q10 0 10 10 m204 0 q0 -10 10 -10 m-214 10 v12 m204 0 v-12 m-204 12 q0 10 10 10 m184 0 q10 0 10 -10 m-194 10 h10 m164 0 h10 m40 -32 h10 m0 0 h150 m-180 0 h20 m160 0 h20 m-200 0 q10 0 10 10 m180 0 q0 -10 10 -10 m-190 10 v12 m180 0 v-12 m-180 12 q0 10 10 10 m160 0 q10 0 10 -10 m-170 10 h10 m90 0 h10 m0 0 h10 m30 0 h10 m20 -32 h70 m-514 0 h20 m494 0 h20 m-534 0 q10 0 10 10 m514 0 q0 -10 10 -10 m-524 10 v56 m514 0 v-56 m-514 56 q0 10 10 10 m494 0 q10 0 10 -10 m-504 10 h10 m164 0 h10 m0 0 h10 m80 0 h10 m0 0 h10 m140 0 h10 m0 0 h10 m30 0 h10 m20 -76 h10 m30 0 h10 m0 0 h10 m90 0 h10 m-804 0 h20 m784 0 h20 m-824 0 q10 0 10 10 m804 0 q0 -10 10 -10 m-814 10 v100 m804 0 v-100 m-804 100 q0 10 10 10 m784 0 q10 0 10 -10 m-794 10 h10 m30 0 h10 m0 0 h10 m132 0 h10 m0 0 h582 m23 -120 h-3"></svg:path>
<polygon points="853 17 861 13 861 21"></polygon>
<polygon points="853 17 845 13 845 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:code>
<div><a href="#Pseudo-destructor-name" title="Pseudo-destructor-name">Pseudo-destructor-name</a></div>
<div> ::= '::'? ( <a href="#Nested-name-specifier" title="Nested-name-specifier">Nested-name-specifier</a>? ( <a href="#Type-name" title="Type-name">Type-name</a> '::' )? | <a href="#Nested-name-specifier" title="Nested-name-specifier">Nested-name-specifier</a> 'template' <a href="#Simple-template-id" title="Simple-template-id">Simple-template-id</a> '::' ) '~' <a href="#Type-name" title="Type-name">Type-name</a></div>
<div> | '~' <a href="#Decltype-specifier" title="Decltype-specifier">Decltype-specifier</a></div></xhtml:code></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#Postfix-expression" title="Postfix-expression">Postfix-expression</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Unary-expression">Unary-expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="601" height="599">
<polygon points="9 51 1 47 1 55"></polygon>
<polygon points="17 51 9 47 9 55"></polygon>
<rect x="51" y="3" width="60" height="32" rx="10"></rect>
<rect x="49" y="1" width="60" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="59" y="21">sizeof</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Postfix-expression" xlink:title="Postfix-expression">
<rect x="171" y="37" width="138" height="32"></rect>
<rect x="169" y="35" width="138" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="179" y="55">Postfix-expression</text></a><rect x="191" y="81" width="40" height="32" rx="10"></rect>
<rect x="189" y="79" width="40" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="199" y="99">++</text>
<rect x="191" y="125" width="32" height="32" rx="10"></rect>
<rect x="189" y="123" width="32" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="199" y="143">--</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Unary-operator" xlink:title="Unary-operator">
<rect x="191" y="169" width="118" height="32"></rect>
<rect x="189" y="167" width="118" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="199" y="187">Unary-operator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GNU-realimag-operator" xlink:title="GNU-realimag-operator">
<rect x="191" y="213" width="168" height="32"></rect>
<rect x="189" y="211" width="168" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="199" y="231">GNU-realimag-operator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Cast-expression" xlink:title="Cast-expression">
<rect x="399" y="81" width="124" height="32"></rect>
<rect x="397" y="79" width="124" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="407" y="99">Cast-expression</text></a><rect x="191" y="257" width="60" height="32" rx="10"></rect>
<rect x="189" y="255" width="60" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="199" y="275">sizeof</text>
<rect x="291" y="257" width="26" height="32" rx="10"></rect>
<rect x="289" y="255" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="299" y="275">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-id" xlink:title="Type-id">
<rect x="337" y="257" width="66" height="32"></rect>
<rect x="335" y="255" width="66" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="345" y="275">Type-id</text></a><rect x="291" y="301" width="32" height="32" rx="10"></rect>
<rect x="289" y="299" width="32" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="299" y="319">...</text>
<rect x="343" y="301" width="26" height="32" rx="10"></rect>
<rect x="341" y="299" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="351" y="319">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Identifier" xlink:title="Identifier">
<rect x="389" y="301" width="78" height="32"></rect>
<rect x="387" y="299" width="78" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="397" y="319">Identifier</text></a><rect x="191" y="345" width="66" height="32" rx="10"></rect>
<rect x="189" y="343" width="66" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="199" y="363">alignof</text>
<rect x="277" y="345" width="26" height="32" rx="10"></rect>
<rect x="275" y="343" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="285" y="363">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Type-id" xlink:title="Type-id">
<rect x="323" y="345" width="66" height="32"></rect>
<rect x="321" y="343" width="66" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="331" y="363">Type-id</text></a><rect x="527" y="257" width="26" height="32" rx="10"></rect>
<rect x="525" y="255" width="26" height="32" class="terminal" rx="10"></rect>
<text class="terminal" x="535" y="275">)</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#New-expression" xlink:title="New-expression">
<rect x="171" y="389" width="122" height="32"></rect>
<rect x="169" y="387" width="122" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="179" y="407">New-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Delete-expression" xlink:title="Delete-expression">
<rect x="171" y="433" width="136" height="32"></rect>
<rect x="169" y="431" width="136" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="179" y="451">Delete-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GNU-builtin-function-call-expression" xlink:title="GNU-builtin-function-call-expression">
<rect x="171" y="477" width="248" height="32"></rect>
<rect x="169" y="475" width="248" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="179" y="495">GNU-builtin-function-call-expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#GNU-extension" xlink:title="GNU-extension">
<rect x="171" y="521" width="114" height="32"></rect>
<rect x="169" y="519" width="114" height="32" class="nonterminal"></rect>
<text class="nonterminal" x="179" y="539">GNU-extension</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Cast-expression" xlink:title="Cast-expression">
<rect x="171" y="565" width="124" height="32"></rect>
<rect x="169" y="563" width="124" height="32" class="nonterminal"></rect>