Skip to content

Commit 99921f9

Browse files
committed
Final final changes from LWG:
- Added red color around the added decay_t - Added red color around the new note - const override noexcept --> const noexcept override
1 parent 4843037 commit 99921f9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

algorithms.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ <h1><code>ExecutionPolicy</code> algorithm overloads</h1>
192192
Parallel algorithms
193193
<del>have the requirement <code>is_execution_policy&lt;ExecutionPolicy&gt;::value</code> is <code>true</code></del>
194194
<ins>shall not participate in overload resolution unless
195-
<code>is_execution_policy&lt;decay_t&lt;ExecutionPolicy&gt;&gt;::value</code> is <code>true</code></ins>.
195+
<code>is_execution_policy<ins2>&lt;decay_t&lt;</ins2>ExecutionPolicy<ins2>&gt;</ins2>&gt;::value</code> is <code>true</code></ins>.
196196
</p>
197197

198198
<del2><p>The algorithms listed in <cxx-ref to="tab.parallel.algorithms"></cxx-ref> shall have <code>ExecutionPolicy</code> overloads.</p></del2>
@@ -315,9 +315,11 @@ <h1><code>ExecutionPolicy</code> algorithm overloads</h1>
315315
</tr>
316316
</table>
317317

318+
<ins2>
318319
<cxx-note>
319320
Not all algorithms in the Standard Library have counterparts in <cxx-ref to="tab.parallel.algorithms"></cxx-ref>.
320321
</cxx-note>
322+
</ins2>
321323
</cxx-section>
322324
</cxx-section>
323325

exceptions.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Header <code>&lt;experimental/exception_list&gt;</code> synopsis</h1>
7979
iterator begin() const noexcept;
8080
iterator end() const noexcept;
8181

82-
<ins2>const char* what() const override noexcept;</ins2>
82+
<ins2>const char* what() const noexcept override;</ins2>
8383
<del2>
8484
private:
8585
std::list&lt;exception_ptr&gt; exceptions_; // exposition only
@@ -138,7 +138,7 @@ <h1>Header <code>&lt;experimental/exception_list&gt;</code> synopsis</h1>
138138

139139
<cxx-function>
140140
<cxx-signature>
141-
<ins2>const char* what() const noexcept;</ins2>
141+
<ins2>const char* what() const noexcept override;</ins2>
142142
</cxx-signature>
143143

144144
<cxx-returns>

0 commit comments

Comments
 (0)