Skip to content

Commit

Permalink
Fix copy&paste error in 3503 P/R
Browse files Browse the repository at this point in the history
  • Loading branch information
jwakely committed Sep 19, 2024
1 parent 7ef6904 commit 7bde7cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml/issue3503.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ The least result `t` representable in `ToDuration` for which
<pre><code><ins>auto t = duration_cast&lt;ToDuration&gt;(d);
if constexpr (treat_as_floating_point_v&lt;typename ToDuration::rep&gt;)
return t;
else if (t &lt;= d)
else if (t &gt;= d)
return t;
else
return ++t;
Expand Down

0 comments on commit 7bde7cb

Please sign in to comment.