|
2 | 2 | <feed xmlns="http://www.w3.org/2005/Atom">
|
3 | 3 | <title>cpprefjp - C++日本語リファレンス</title>
|
4 | 4 | <link href="https://cpprefjp.github.io" />
|
5 |
| - <updated>2025-08-01T02:46:16.508855</updated> |
6 |
| - <id>d1034d95-9eff-4b3c-a678-4fca13ed0a80</id> |
| 5 | + <updated>2025-08-01T10:12:00.713951</updated> |
| 6 | + <id>4dd1c92e-cda8-4795-9c38-d233199d1d2d</id> |
7 | 7 |
|
8 | 8 |
|
| 9 | + <entry> |
| 10 | + <title>stod -- fix typo in std::stod()</title> |
| 11 | + <link href="https://cpprefjp.github.io/reference/string/stod.html"/> |
| 12 | + <id>11888d8f4fc06abc8657bd00de4d38056c15e9e5:reference/string/stod.md</id> |
| 13 | + <updated>2025-08-01T19:07:49+09:00</updated> |
| 14 | + |
| 15 | + <summary type="html"><pre><code>diff --git a/reference/string/stod.md b/reference/string/stod.md |
| 16 | +index cbf7ef217..2d61a8c0c 100644 |
| 17 | +--- a/reference/string/stod.md |
| 18 | ++++ b/reference/string/stod.md |
| 19 | +@@ -28,7 +28,7 @@ namespace std { |
| 20 | + ## 例外 |
| 21 | + - 数値への変換が行われなかった場合、[`std::invalid_argument`](/reference/stdexcept.md)が送出される。 |
| 22 | + - 以下の条件に合致した場合、[`std::out_of_range`](/reference/stdexcept.md)が送出される。 |
| 23 | +- - `std::strtoull()`関数が[`errno`](/reference/cerrno/errno.md)変数に[`ERANGE`](/reference/cerrno.md)を設定した場合 |
| 24 | ++ - `std::strtod()`関数が[`errno`](/reference/cerrno/errno.md)変数に[`ERANGE`](/reference/cerrno.md)を設定した場合 |
| 25 | + - 結果が範囲外の値になった場合 (C++14) |
| 26 | + |
| 27 | + |
| 28 | +</code></pre></summary> |
| 29 | + |
| 30 | + <author> |
| 31 | + <name>suomesta</name> |
| 32 | + |
| 33 | + </author> |
| 34 | + </entry> |
| 35 | + |
9 | 36 | <entry>
|
10 | 37 | <title>schedule_from -- execution/schedule_from: LWG4198</title>
|
11 | 38 | <link href="https://cpprefjp.github.io/reference/execution/execution/schedule_from.html"/>
|
@@ -365,40 +392,6 @@ index 0992cf2e9..ae02008c7 100644
|
365 | 392 | - [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
|
366 | 393 | - [P3396R1 std::execution wording fixes](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3396r1.html)
|
367 | 394 | +- [LWG 4227. Missing `noexcept` operator in [exec.when.all]](https://cplusplus.github.io/LWG/issue4227)
|
368 |
| -</code></pre></summary> |
369 |
| - |
370 |
| - <author> |
371 |
| - <name>yoh</name> |
372 |
| - |
373 |
| - </author> |
374 |
| - </entry> |
375 |
| - |
376 |
| - <entry> |
377 |
| - <title>with-await-transform -- execution/with-await-transform: LWG4201</title> |
378 |
| - <link href="https://cpprefjp.github.io/reference/execution/execution/with-await-transform.html"/> |
379 |
| - <id>0bf9ae6391387157cca3248ca664007b9dadf7ec:reference/execution/execution/with-await-transform.md</id> |
380 |
| - <updated>2025-07-31T22:01:29+09:00</updated> |
381 |
| - |
382 |
| - <summary type="html"><pre><code>diff --git a/reference/execution/execution/with-await-transform.md b/reference/execution/execution/with-await-transform.md |
383 |
| -index ea2531348..39fbfe496 100644 |
384 |
| ---- a/reference/execution/execution/with-await-transform.md |
385 |
| -+++ b/reference/execution/execution/with-await-transform.md |
386 |
| -@@ -20,8 +20,9 @@ namespace std::execution { |
387 |
| - } |
388 |
| - |
389 |
| - template&lt;has-as-awaitable&lt;Derived&gt; T&gt; |
390 |
| -- decltype(auto) await_transform(T&amp;&amp; value) |
391 |
| -+ auto await_transform(T&amp;&amp; value) |
392 |
| - noexcept(noexcept(std::forward&lt;T&gt;(value).as_awaitable(declval&lt;Derived&amp;&gt;()))) |
393 |
| -+ -&gt; decltype(std::forward&lt;T&gt;(value).as_awaitable(declval&lt;Derived&amp;&gt;())) |
394 |
| - { |
395 |
| - return std::forward&lt;T&gt;(value).as_awaitable(static_cast&lt;Derived&amp;&gt;(*this)); |
396 |
| - } |
397 |
| -@@ -45,3 +46,4 @@ namespace std::execution { |
398 |
| - |
399 |
| - ## 参照 |
400 |
| - - [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html) |
401 |
| -+- [LWG 4201. `with-await-transform::await_transform` should not use a deduced return type](https://cplusplus.github.io/LWG/issue4201) |
402 | 395 | </code></pre></summary>
|
403 | 396 |
|
404 | 397 | <author>
|
|
0 commit comments