Skip to content

Commit 85cdd1f

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 614869e commit 85cdd1f

File tree

3 files changed

+46
-76
lines changed

3 files changed

+46
-76
lines changed

reference/format/format.html

Lines changed: 8 additions & 8 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="2026-01-20T03:05:18">
192-
2026年01月20日 03時05分18秒
191+
<span itemprop="datePublished" content="2026-03-23T14:12:31">
192+
2026年03月23日 14時12分31秒
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">Raclamusi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -876,11 +876,11 @@ <h3><a class="cpprefjp-defined-word" data-desc="コンテナをラップした
876876
</code></pre></div>
877877
</div></p>
878878
<h4>出力</h4>
879-
<p><pre><code>[1, 2, 3]
880-
[3, 2, 1]
881-
[1, 2, 3]
882-
{1: "aaa", 2: "bbb"}
883-
{1, 2, 3}
879+
<p><pre><code>queue: [1, 2, 3]
880+
priority_queue: [3, 2, 1]
881+
stack: [1, 2, 3]
882+
flat_map: {1: "aaa", 2: "bbb"}
883+
flat_set: {1, 2, 3}
884884
</code></pre></p>
885885
<h3><code>vector&lt;bool&gt;</code>を出力する (C++23)</h3>
886886
<p><div class="yata" id="2dab6e3cda339efd7f666d0f46c2a7480c105ec5"><div class="codehilite"><pre><span></span><code><span class="cp">#include <a href="../iostream.html">&lt;iostream&gt;</a></span>

rss.xml

Lines changed: 37 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,45 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2026-03-23T12:35:57.836096</updated>
6-
<id>6d4f2b9f-5ca8-47e2-8c35-504655a8cb89</id>
5+
<updated>2026-03-23T14:16:50.539748</updated>
6+
<id>7c07920a-c9a0-4239-8b2a-f4425151c60d</id>
77

88

9+
<entry>
10+
<title>format -- format : サンプルコードの出力を修正</title>
11+
<link href="https://cpprefjp.github.io/reference/format/format.html"/>
12+
<id>0fd244266081c2ea7358d81398a03077aa872b07:reference/format/format.md</id>
13+
<updated>2026-03-23T23:12:31+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/format/format.md b/reference/format/format.md
16+
index b4265b9d8..be84af4fe 100644
17+
--- a/reference/format/format.md
18+
+++ b/reference/format/format.md
19+
@@ -581,11 +581,11 @@ int main()
20+
21+
#### 出力
22+
```
23+
-[1, 2, 3]
24+
-[3, 2, 1]
25+
-[1, 2, 3]
26+
-{1: &amp;#34;aaa&amp;#34;, 2: &amp;#34;bbb&amp;#34;}
27+
-{1, 2, 3}
28+
+queue: [1, 2, 3]
29+
+priority_queue: [3, 2, 1]
30+
+stack: [1, 2, 3]
31+
+flat_map: {1: &amp;#34;aaa&amp;#34;, 2: &amp;#34;bbb&amp;#34;}
32+
+flat_set: {1, 2, 3}
33+
```
34+
35+
### `vector&amp;lt;bool&amp;gt;`を出力する (C++23)
36+
&lt;/code&gt;&lt;/pre&gt;</summary>
37+
38+
<author>
39+
<name>Raclamusi</name>
40+
<email>raclamusi@gmail.com</email>
41+
</author>
42+
</entry>
43+
944
<entry>
1045
<title>コルーチン [P0912R5] -- サンプルコードの include 不足のエラーを修正</title>
1146
<link href="https://cpprefjp.github.io/lang/cpp20/coroutines.html"/>
@@ -461,69 +496,4 @@ index 138cf80c9..f2801cd17 100644
461496
</author>
462497
</entry>
463498

464-
<entry>
465-
<title>new_handler -- new_handler : サンプルコードを修正</title>
466-
<link href="https://cpprefjp.github.io/reference/new/new_handler.html"/>
467-
<id>de4a627c65208fe72a3f2c5cf4f13b6cffac0c71:reference/new/new_handler.md</id>
468-
<updated>2026-03-23T19:44:22+09:00</updated>
469-
470-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/new/new_handler.md b/reference/new/new_handler.md
471-
index 76fabfce4..dc4e9a4f7 100644
472-
--- a/reference/new/new_handler.md
473-
+++ b/reference/new/new_handler.md
474-
@@ -41,7 +41,9 @@ int main()
475-
std::new_handler handler = on_new_failed;
476-
std::set_new_handler(handler);
477-
478-
- int* p = new int[std::numeric_limits&amp;lt;std::size_t&amp;gt;::max()];
479-
+ auto n = std::numeric_limits&amp;lt;std::size_t&amp;gt;::max();
480-
+ int* p = new int[n];
481-
+ delete[] p;
482-
}
483-
```
484-
* std::new_handler[color ff0000]
485-
&lt;/code&gt;&lt;/pre&gt;</summary>
486-
487-
<author>
488-
<name>Raclamusi</name>
489-
<email>raclamusi@gmail.com</email>
490-
</author>
491-
</entry>
492-
493-
<entry>
494-
<title>set_new_handler -- new_handler : サンプルコードを修正</title>
495-
<link href="https://cpprefjp.github.io/reference/new/set_new_handler.html"/>
496-
<id>de4a627c65208fe72a3f2c5cf4f13b6cffac0c71:reference/new/set_new_handler.md</id>
497-
<updated>2026-03-23T19:44:22+09:00</updated>
498-
499-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/new/set_new_handler.md b/reference/new/set_new_handler.md
500-
index 84341cddf..da5b23bc7 100644
501-
--- a/reference/new/set_new_handler.md
502-
+++ b/reference/new/set_new_handler.md
503-
@@ -45,7 +45,9 @@ int main()
504-
// new失敗時の動作をカスタマイズ
505-
std::set_new_handler(on_new_failed);
506-
507-
- int* p = new int[std::numeric_limits&amp;lt;std::size_t&amp;gt;::max()];
508-
+ auto n = std::numeric_limits&amp;lt;std::size_t&amp;gt;::max();
509-
+ int* p = new int[n];
510-
+ delete[] p;
511-
}
512-
```
513-
* std::set_new_handler[color ff0000]
514-
@@ -57,5 +59,5 @@ int main()
515-
メモリ確保に失敗した
516-
517-
This application has requested the Runtime to terminate it in an unusual way.
518-
-Please contact the application&amp;#39;s support team for more information.&amp;lt;/span&amp;gt;
519-
+Please contact the application&amp;#39;s support team for more information.
520-
```
521-
&lt;/code&gt;&lt;/pre&gt;</summary>
522-
523-
<author>
524-
<name>Raclamusi</name>
525-
<email>raclamusi@gmail.com</email>
526-
</author>
527-
</entry>
528-
529499
</feed>

sitemap.xml

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

3175631756
<url>
3175731757
<loc>https://cpprefjp.github.io/reference/format/format.html</loc>
31758-
<lastmod>2026-03-05T18:27:18+09:00</lastmod>
31758+
<lastmod>2026-03-23T23:12:31+09:00</lastmod>
3175931759
<changefreq>daily</changefreq>
3176031760
<priority>0.7</priority>
3176131761
</url>

0 commit comments

Comments
 (0)