-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (72 loc) · 2.43 KB
/
index.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
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</h2>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
<h2>C++ language enhancement proposals</h2>
<table>
<thead>
<tr>
<th>Document</th>
<th>Title</th>
<th>ISO C++ Bugzilla</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="/cxx/P0412R0 Benchmarking Primitives.html">P0412R0</a></td>
<td>Benchmarking Primitives</td>
<td></td>
<td>Reviewed by EWG in Issaquah-2016
(<a href="/cxx/slides/benchmarking.html">Slides</a>), some corrections
needed</td>
</tr>
<tr>
<td>
<a href="/cxx/P0457R0 String Prefix and Suffix Checking.html">P0457R0</a><br>
<a href="/cxx/p0457r1.html">P0457R1</a>
</td>
<td>String Prefix and Suffix Checking</td>
<td><a href="https://issues.isocpp.org/show_bug.cgi?id=244">244</a></td>
<td>Reviewed by incomplete LEWG in Issaquah-2016<br>
Reviewed by LEWG in Toronto-2017, ready for LWG review with minor
corrections (done in P0457R1)
</td>
</tr>
<tr>
<td>
<a href="/cxx/P0458R0 Checking for Existence of an Element in Associative Containers.html">P0458R0</a>
</td>
<td>
P0458R0 Checking for Existence of an Element in Associative Containers
</td>
<td><a href="https://issues.isocpp.org/show_bug.cgi?id=245">245</a></td>
<td>Reviewed by LEWG subgroup in Toronto-2016
(<a href="/cxx/slides/contains.html">Slides</a>). Awaiting LEWG review</td>
</tr>
</tbody>
</table>
<h2>Miscellaneous</h2>
<ul>
<li>
<a href="/cxx/slides-mailru/cxx-presentation.html">
C++ завтра и послезавтра (доклад в Mail.Ru)</a>
</li>
<li>
<a href="/gcc/slides-mailru/gcc-presentation.html">
Внутреннее устройство и оптимизации компилятора GCC (доклад в Mail.Ru)</a>
</li>
</ul>
</div>