Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions xml/issue2404.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<!DOCTYPE issue SYSTEM "lwg-issue.dtd" [
<!DOCTYPE issue SYSTEM "lwg-issue.dtd" [
<!ENTITY nbsp "&#160;">
] >

<issue num="2404" status="C++17">
<title><tt>mismatch()</tt>'s complexity needs to be updated</title>
<section><sref ref="[mismatch]"/></section>
<section><sref ref="[alg.mismatch]"/></section>
<submitter>Stephan T. Lavavej</submitter>
<date>14 Jun 2014</date>
<priority>0</priority>

<discussion>
<p>
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3671.html">N3671</a> updated the complexities of
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3671.html">N3671</a> updated the complexities of
<tt>equal()</tt> and <tt>is_permutation()</tt>, but not <tt>mismatch()</tt>.
</p>

Expand All @@ -31,7 +31,7 @@ Move to Ready

<blockquote>
<p>
-3- <i>Complexity</i>: At most <tt><ins>min(</ins>last1 - first1<ins>, last2 - first2)</ins></tt> applications of the
-3- <i>Complexity</i>: At most <tt><ins>min(</ins>last1 - first1<ins>, last2 - first2)</ins></tt> applications of the
corresponding predicate.
</p>
</blockquote>
Expand Down
8 changes: 4 additions & 4 deletions xml/issue3178.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<issue num="3178" status="Resolved">
<title><tt>std::mismatch</tt> is missing an upper bound</title>
<section><sref ref="[mismatch]"/></section>
<section><sref ref="[alg.mismatch]"/></section>
<submitter>Geoffrey Romer</submitter>
<date>20 Dec 2018</date>
<priority>0</priority>
Expand Down Expand Up @@ -31,7 +31,7 @@ fundamental convention that STL algorithms operate on user-supplied ranges, not
<note>2019-01-26 Priority to 0 and Status to Tentatively Ready after discussions on the reflector</note>
<p>
During that reflector discussion several contributers argued in favour for changing the current wording in
<sref ref="[mismatch]"/> p3 from "smallest integer" to "smallest <ins>nonnegative</ins> integer". This minor
<sref ref="[mismatch]"/> p3 from "smallest integer" to "smallest <ins>nonnegative</ins> integer". This minor
wording delta has also been added to the original proposed wording.
</p>

Expand Down Expand Up @@ -79,8 +79,8 @@ both parameters <tt>pred</tt> and <tt>proj1</tt>.</p></li>
</ol>
<ins>-?- Let <tt><i>N</i></tt> be <tt>min(last1 - first1, last2 - first2)</tt>.</ins>
<p/>
-3- <i>Returns:</i> <tt>{ first1 + n, first2 + n }</tt>, where <tt>n</tt> is the smallest <ins>nonnegative</ins> integer such
that <tt><i>E</i></tt> holds, or <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> if no such integer
-3- <i>Returns:</i> <tt>{ first1 + n, first2 + n }</tt>, where <tt>n</tt> is the smallest <ins>nonnegative</ins> integer such
that <tt><i>E</i></tt> holds, or <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> if no such integer
<ins>less than <tt><i>N</i></tt></ins> exists.
<p/>
-4- <i>Complexity:</i> At most <tt><del>min(last1 - first1, last2 - first2)</del><ins><i>N</i></ins></tt> applications of the
Expand Down
2 changes: 1 addition & 1 deletion xml/issue3909.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<issue num="3909" status="Tentatively NAD">
<title>Issues about <code>viewable_range</code></title>
<section><sref ref="[ranges.refinements]"/><sref ref="[range.adaptor.object]"/></section>
<section><sref ref="[range.refinements]"/><sref ref="[range.adaptor.object]"/></section>
<submitter>Jiang An</submitter>
<date>27 Mar 2023</date>
<priority>99</priority>
Expand Down
4 changes: 2 additions & 2 deletions xml/issue4206.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<issue num="4206" status="New">
<title>Alias template `connect_result_t` should be constrained with `sender_to`</title>
<section><sref ref="[exec.syn]"/></section>
<section><sref ref="[execution.syn]"/></section>
<submitter>Eric Niebler</submitter>
<date>04 Feb 2025</date>
<priority>1</priority>
Expand Down Expand Up @@ -60,7 +60,7 @@ This wording is relative to <paper num="N5001"/>.

<ol>
<li>
Modify <sref ref="[exec.syn]"/> as indicated:
Modify <sref ref="[execution.syn]"/> as indicated:
<blockquote>
<pre><code>
template&lt;class Sndr, class Rcvr&gt;
Expand Down