Skip to content

Commit

Permalink
Final final changes from LWG:
Browse files Browse the repository at this point in the history
- Added red color around the added decay_t
- Added red color around the new note
- const override noexcept --> const noexcept override
  • Loading branch information
arturl committed Jun 20, 2014
1 parent 4843037 commit 99921f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion algorithms.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ <h1><code>ExecutionPolicy</code> algorithm overloads</h1>
Parallel algorithms
<del>have the requirement <code>is_execution_policy&lt;ExecutionPolicy&gt;::value</code> is <code>true</code></del>
<ins>shall not participate in overload resolution unless
<code>is_execution_policy&lt;decay_t&lt;ExecutionPolicy&gt;&gt;::value</code> is <code>true</code></ins>.
<code>is_execution_policy<ins2>&lt;decay_t&lt;</ins2>ExecutionPolicy<ins2>&gt;</ins2>&gt;::value</code> is <code>true</code></ins>.
</p>

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

<ins2>
<cxx-note>
Not all algorithms in the Standard Library have counterparts in <cxx-ref to="tab.parallel.algorithms"></cxx-ref>.
</cxx-note>
</ins2>
</cxx-section>
</cxx-section>

Expand Down
4 changes: 2 additions & 2 deletions exceptions.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h1>Header <code>&lt;experimental/exception_list&gt;</code> synopsis</h1>
iterator begin() const noexcept;
iterator end() const noexcept;

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

<cxx-function>
<cxx-signature>
<ins2>const char* what() const noexcept;</ins2>
<ins2>const char* what() const noexcept override;</ins2>
</cxx-signature>

<cxx-returns>
Expand Down

0 comments on commit 99921f9

Please sign in to comment.