Skip to content

Commit b69cdb0

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent a4a34c5 commit b69cdb0

File tree

3 files changed

+38
-42
lines changed

3 files changed

+38
-42
lines changed

reference/stdexcept.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@
176176

177177
<p class="text-right"><small>
178178
最終更新日時(UTC):
179-
<span itemprop="datePublished" content="2026-01-19T05:22:32">
180-
2026年01月19日 05時22分32秒
179+
<span itemprop="datePublished" content="2026-01-29T06:24:03">
180+
2026年01月29日 06時24分03秒
181181
</span>
182182
<br/>
183183
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
184-
<span itemprop="name">KaiTomotake</span>
184+
<span itemprop="name">Akira Takahashi</span>
185185
</span>
186186
が更新
187187
</small></p>
@@ -268,9 +268,9 @@
268268
<li><code><a href="exception/exception.html">exception</a></code><ul>
269269
<li><code><a href="stdexcept/logic_error.html">logic_error</a></code><ul>
270270
<li><code><a href="stdexcept/domain_error.html">domain_error</a></code></li>
271-
<li><code>invalid_argument</code></li>
271+
<li><code><a href="stdexcept/invalid_argument.html">invalid_argument</a></code></li>
272272
<li><code>length_error</code></li>
273-
<li><code>out_of_range</code></li>
273+
<li><code><a href="stdexcept/out_of_range.html">out_of_range</a></code></li>
274274
</ul>
275275
</li>
276276
<li><code>runtime_error</code><ul>

rss.xml

Lines changed: 32 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,40 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2026-01-29T04:26:46.115668</updated>
6-
<id>ffa472e4-8792-4b57-8504-4b66bd5d0bf3</id>
5+
<updated>2026-01-29T06:28:13.132911</updated>
6+
<id>82250ba6-9037-423f-a199-0fc690c2fcfe</id>
77

88

9+
<entry>
10+
<title>stdexcept -- stdexcept : 作成済み例外ページへのリンクを追加 #1549</title>
11+
<link href="https://cpprefjp.github.io/reference/stdexcept.html"/>
12+
<id>bf831f72899662db93cb4bed43bf8e834fd8f6f4:reference/stdexcept.md</id>
13+
<updated>2026-01-29T15:24:03+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/stdexcept.md b/reference/stdexcept.md
16+
index 66ffb68de..5d5caccd6 100644
17+
--- a/reference/stdexcept.md
18+
+++ b/reference/stdexcept.md
19+
@@ -28,9 +28,9 @@
20+
- [`exception`](/reference/exception/exception.md)
21+
- [`logic_error`](stdexcept/logic_error.md)
22+
- [`domain_error`](stdexcept/domain_error.md)
23+
- - `invalid_argument`
24+
+ - [`invalid_argument`](stdexcept/invalid_argument.md)
25+
- `length_error`
26+
- - `out_of_range`
27+
+ - [`out_of_range`](stdexcept/out_of_range.md)
28+
- `runtime_error`
29+
- `range_error`
30+
- `overflow_error`
31+
&lt;/code&gt;&lt;/pre&gt;</summary>
32+
33+
<author>
34+
<name>Akira Takahashi</name>
35+
<email>faithandbrave@gmail.com</email>
36+
</author>
37+
</entry>
38+
939
<entry>
1040
<title>コンストラクタ -- C++26対応としてpackaged_taskのアロケータ指定コンストラクタを復活 #1513</title>
1141
<link href="https://cpprefjp.github.io/reference/future/packaged_task/op_constructor.html"/>
@@ -4847,38 +4877,4 @@ index b805e9011..04dd4be0d 100644
48474877
</author>
48484878
</entry>
48494879

4850-
<entry>
4851-
<title>SIGABRT -- SIGABRT : インデントを修正</title>
4852-
<link href="https://cpprefjp.github.io/reference/csignal/sigabrt.html"/>
4853-
<id>ec90ff9b199dfc02afc2e1d29f1515570081250f:reference/csignal/sigabrt.md</id>
4854-
<updated>2026-01-26T13:47:54+09:00</updated>
4855-
4856-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/csignal/sigabrt.md b/reference/csignal/sigabrt.md
4857-
index 8475ca2ed..01ac76a84 100644
4858-
--- a/reference/csignal/sigabrt.md
4859-
+++ b/reference/csignal/sigabrt.md
4860-
@@ -17,12 +17,12 @@
4861-
#include &amp;lt;cstdlib&amp;gt;
4862-
4863-
void handler(int) {
4864-
- std::_Exit(0);
4865-
+ std::_Exit(0);
4866-
}
4867-
4868-
int main() {
4869-
- std::signal(SIGABRT, handler);
4870-
- std::abort();
4871-
+ std::signal(SIGABRT, handler);
4872-
+ std::abort();
4873-
}
4874-
```
4875-
* SIGABRT[color ff0000]
4876-
&lt;/code&gt;&lt;/pre&gt;</summary>
4877-
4878-
<author>
4879-
<name>Akira Takahashi</name>
4880-
<email>faithandbrave@gmail.com</email>
4881-
</author>
4882-
</entry>
4883-
48844880
</feed>

sitemap.xml

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

151151
<url>
152152
<loc>https://cpprefjp.github.io/reference/stdexcept.html</loc>
153-
<lastmod>2026-01-26T04:43:04+00:00</lastmod>
153+
<lastmod>2026-01-29T15:24:03+09:00</lastmod>
154154
<changefreq>daily</changefreq>
155155
<priority>0.8</priority>
156156
</url>

0 commit comments

Comments
 (0)