Skip to content

Commit 03708c1

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 76f9e9c commit 03708c1

File tree

3 files changed

+34
-41
lines changed

3 files changed

+34
-41
lines changed

reference/string/stod.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
192-
2024年06月11日 13時45分38秒
191+
<span itemprop="datePublished" content="2025-08-01T10:07:49">
192+
2025年08月01日 10時07分49秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">suomesta</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -230,7 +230,7 @@ <h2><a class="cpprefjp-defined-word" data-desc="問題が発生したときに
230230
<ul>
231231
<li>数値への変換が行われなかった場合、<code><a href="../stdexcept.html">std::invalid_argument</a></code>が送出される。</li>
232232
<li>以下の条件に合致した場合、<code><a href="../stdexcept.html">std::out_of_range</a></code>が送出される。<ul>
233-
<li><code>std::strtoull()</code>関数が<code><a href="../cerrno/errno.html">errno</a></code>変数に<code><a href="../cerrno.html">ERANGE</a></code>を設定した場合</li>
233+
<li><code>std::strtod()</code>関数が<code><a href="../cerrno/errno.html">errno</a></code>変数に<code><a href="../cerrno.html">ERANGE</a></code>を設定した場合</li>
234234
<li>結果が範囲外の値になった場合 (C++14)</li>
235235
</ul>
236236
</li>

rss.xml

Lines changed: 29 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,37 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<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>
77

88

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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>suomesta</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>schedule_from -- execution/schedule_from: LWG4198</title>
1138
<link href="https://cpprefjp.github.io/reference/execution/execution/schedule_from.html"/>
@@ -365,40 +392,6 @@ index 0992cf2e9..ae02008c7 100644
365392
- [P2300R10 `std::execution`](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html)
366393
- [P3396R1 std::execution wording fixes](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p3396r1.html)
367394
+- [LWG 4227. Missing `noexcept` operator in [exec.when.all]](https://cplusplus.github.io/LWG/issue4227)
368-
&lt;/code&gt;&lt;/pre&gt;</summary>
369-
370-
<author>
371-
<name>yoh</name>
372-
<email>[email protected]</email>
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">&lt;pre&gt;&lt;code&gt;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&amp;lt;has-as-awaitable&amp;lt;Derived&amp;gt; T&amp;gt;
390-
- decltype(auto) await_transform(T&amp;amp;&amp;amp; value)
391-
+ auto await_transform(T&amp;amp;&amp;amp; value)
392-
noexcept(noexcept(std::forward&amp;lt;T&amp;gt;(value).as_awaitable(declval&amp;lt;Derived&amp;amp;&amp;gt;())))
393-
+ -&amp;gt; decltype(std::forward&amp;lt;T&amp;gt;(value).as_awaitable(declval&amp;lt;Derived&amp;amp;&amp;gt;()))
394-
{
395-
return std::forward&amp;lt;T&amp;gt;(value).as_awaitable(static_cast&amp;lt;Derived&amp;amp;&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)
402395
&lt;/code&gt;&lt;/pre&gt;</summary>
403396

404397
<author>

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10034,7 +10034,7 @@
1003410034

1003510035
<url>
1003610036
<loc>https://cpprefjp.github.io/reference/string/stod.html</loc>
10037-
<lastmod>2025-07-22T23:37:52+09:00</lastmod>
10037+
<lastmod>2025-08-01T19:07:49+09:00</lastmod>
1003810038
<changefreq>daily</changefreq>
1003910039
<priority>0.7</priority>
1004010040
</url>

0 commit comments

Comments
 (0)