22<feed xmlns="http://www.w3.org/2005/Atom">
33 <title>cpprefjp - C++日本語リファレンス</title>
44 <link href="https://cpprefjp.github.io" />
5- <updated>2026-02-21T14:55:11.519912 </updated>
6- <id>f4a61ac0-411e-4412-9c78-710be80424ce </id>
5+ <updated>2026-02-22T05:37:55.670731 </updated>
6+ <id>59c549ea-0648-47d8-b9df-1fe830a42d98 </id>
77
88
9+ <entry>
10+ <title>コンストラクタ -- fix some default constructors in <flat_map> and <flat_set></title>
11+ <link href="https://cpprefjp.github.io/reference/flat_map/flat_multimap/op_constructor.html"/>
12+ <id>895a0172946a9b1dd41163ca42b804cade32e1b4:reference/flat_map/flat_multimap/op_constructor.md</id>
13+ <updated>2026-02-22T14:32:54+09:00</updated>
14+
15+ <summary type="html"><pre><code>diff --git a/reference/flat_map/flat_multimap/op_constructor.md b/reference/flat_map/flat_multimap/op_constructor.md
16+ index caa19381a..89eb99828 100644
17+ --- a/reference/flat_map/flat_multimap/op_constructor.md
18+ +++ b/reference/flat_map/flat_multimap/op_constructor.md
19+ @@ -8,8 +8,9 @@
20+ ```cpp
21+ // ____要素数ゼロのflat_multimapを構築____
22+
23+ -flat_multimap()
24+ - : flat_multimap(key_compare()) { } // (1) C++23
25+ +flat_multimap() : flat_multimap(key_compare()) { } // (1) C++23
26+ +constexpr
27+ + flat_multimap() : flat_multimap(key_compare()) { } // (1) C++26
28+
29+ explicit
30+ flat_multimap(const key_compare&amp; comp) // (2) C++23
31+ </code></pre></summary>
32+
33+ <author>
34+ <name>suomesta</name>
35+ <email>shawn316michaels@gmail.com</email>
36+ </author>
37+ </entry>
38+
39+ <entry>
40+ <title>コンストラクタ -- fix some default constructors in <flat_map> and <flat_set></title>
41+ <link href="https://cpprefjp.github.io/reference/flat_set/flat_multiset/op_constructor.html"/>
42+ <id>895a0172946a9b1dd41163ca42b804cade32e1b4:reference/flat_set/flat_multiset/op_constructor.md</id>
43+ <updated>2026-02-22T14:32:54+09:00</updated>
44+
45+ <summary type="html"><pre><code>diff --git a/reference/flat_set/flat_multiset/op_constructor.md b/reference/flat_set/flat_multiset/op_constructor.md
46+ index 9d3be401a..5dfcbaf9f 100644
47+ --- a/reference/flat_set/flat_multiset/op_constructor.md
48+ +++ b/reference/flat_set/flat_multiset/op_constructor.md
49+ @@ -8,8 +8,9 @@
50+ ```cpp
51+ // ____要素数ゼロのflat_multisetを構築____
52+
53+ -flat_multiset()
54+ - : flat_multiset(key_compare()) { } // (1) C++23
55+ +flat_multiset() : flat_multiset(key_compare()) { } // (1) C++23
56+ +constexpr
57+ + flat_multiset() : flat_multiset(key_compare()) { } // (1) C++26
58+
59+ explicit
60+ flat_multiset(const key_compare&amp; comp) // (2) C++23
61+ </code></pre></summary>
62+
63+ <author>
64+ <name>suomesta</name>
65+ <email>shawn316michaels@gmail.com</email>
66+ </author>
67+ </entry>
68+
69+ <entry>
70+ <title>コンストラクタ -- fix some default constructors in <flat_map> and <flat_set></title>
71+ <link href="https://cpprefjp.github.io/reference/flat_set/flat_set/op_constructor.html"/>
72+ <id>895a0172946a9b1dd41163ca42b804cade32e1b4:reference/flat_set/flat_set/op_constructor.md</id>
73+ <updated>2026-02-22T14:32:54+09:00</updated>
74+
75+ <summary type="html"><pre><code>diff --git a/reference/flat_set/flat_set/op_constructor.md b/reference/flat_set/flat_set/op_constructor.md
76+ index a46c4228f..f2581bf9e 100644
77+ --- a/reference/flat_set/flat_set/op_constructor.md
78+ +++ b/reference/flat_set/flat_set/op_constructor.md
79+ @@ -8,8 +8,9 @@
80+ ```cpp
81+ // ____要素数ゼロのflat_setを構築____
82+
83+ -flat_set()
84+ - : flat_set(key_compare()) { } // (1) C++23
85+ +flat_set() : flat_set(key_compare()) { } // (1) C++23
86+ +constexpr
87+ + flat_set() : flat_set(key_compare()) { } // (1) C++26
88+
89+ explicit
90+ flat_set(const key_compare&amp; comp) // (2) C++23
91+ </code></pre></summary>
92+
93+ <author>
94+ <name>suomesta</name>
95+ <email>shawn316michaels@gmail.com</email>
96+ </author>
97+ </entry>
98+
999 <entry>
10100 <title>operator>> -- C++23対応として、入力ストリームのエラー処理をコンパイラの実装に即した仕様にした #1113</title>
11101 <link href="https://cpprefjp.github.io/reference/bitset/bitset/op_istream.html"/>
@@ -33016,94 +33106,4 @@ index 4d9cc3a7e..000000000
3301633106 </author>
3301733107 </entry>
3301833108
33019- <entry>
33020- <title>print -- print: fix inner link</title>
33021- <link href="https://cpprefjp.github.io/reference/ostream/print.html"/>
33022- <id>676ccee955da11ed1f52a5af4ebc5bb4fbccc1a3:reference/ostream/print.md</id>
33023- <updated>2026-02-11T16:01:09+09:00</updated>
33024-
33025- <summary type="html"><pre><code>diff --git a/reference/ostream/print.md b/reference/ostream/print.md
33026- index 2be42adf9..0137c3753 100644
33027- --- a/reference/ostream/print.md
33028- +++ b/reference/ostream/print.md
33029- @@ -35,7 +35,7 @@ namespace std {
33030- vprint_unicode(os, fmt.get(), make_format_args(std::forward&lt;Args&gt;(args)...));
33031- ```
33032- * vprint_unicode[link vprint_unicode.md]
33033- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33034- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33035- * make_format_args[link /reference/format/make_format_args.md]
33036-
33037- - そうでなければ、以下と等価:
33038- @@ -43,7 +43,7 @@ namespace std {
33039- vprint_nonunicode(os, fmt.get(), make_format_args(std::forward&lt;Args&gt;(args)...));
33040- ```
33041- * vprint_nonunicode[link vprint_nonunicode.md]
33042- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33043- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33044- * make_format_args[link /reference/format/make_format_args.md]
33045-
33046-
33047- </code></pre></summary>
33048-
33049- <author>
33050- <name>yoh</name>
33051- <email>kawasaki.liamg@gmail.com</email>
33052- </author>
33053- </entry>
33054-
33055- <entry>
33056- <title>print -- print: fix inner link</title>
33057- <link href="https://cpprefjp.github.io/reference/print/print.html"/>
33058- <id>676ccee955da11ed1f52a5af4ebc5bb4fbccc1a3:reference/print/print.md</id>
33059- <updated>2026-02-11T16:01:09+09:00</updated>
33060-
33061- <summary type="html"><pre><code>diff --git a/reference/print/print.md b/reference/print/print.md
33062- index 87a021b7d..5af284873 100644
33063- --- a/reference/print/print.md
33064- +++ b/reference/print/print.md
33065- @@ -48,7 +48,7 @@ namespace std {
33066- vprint_unicode(stream, fmt.get(), make_format_args(std::forward&lt;Args&gt;(args)...));
33067- ```
33068- * vprint_unicode[link vprint_unicode.md]
33069- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33070- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33071- * make_format_args[link /reference/format/make_format_args.md]
33072-
33073- - そうでなければ、以下と等価:
33074- @@ -56,7 +56,7 @@ namespace std {
33075- vprint_nonunicode(stream, fmt.get(), make_format_args(std::forward&lt;Args&gt;(args)...));
33076- ```
33077- * vprint_nonunicode[link vprint_nonunicode.md]
33078- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33079- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33080- * make_format_args[link /reference/format/make_format_args.md]
33081-
33082- - C++26 :
33083- @@ -69,7 +69,7 @@ namespace std {
33084- ```
33085- * vprint_unicode[link vprint_unicode.md]
33086- * vprint_unicode_buffered[link vprint_unicode_buffered.md]
33087- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33088- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33089- * make_format_args[link /reference/format/make_format_args.md]
33090-
33091- - そうでなければ、以下と等価:
33092- @@ -80,7 +80,7 @@ namespace std {
33093- ```
33094- * vprint_nonunicode[link vprint_nonunicode.md]
33095- * vprint_nonunicode_buffered[link vprint_nonunicode_buffered.md]
33096- - * fmt.get()[link /reference/format/format_string/get.md.nolink]
33097- + * fmt.get()[link /reference/format/basic_format_string/get.md]
33098- * make_format_args[link /reference/format/make_format_args.md]
33099-
33100-
33101- </code></pre></summary>
33102-
33103- <author>
33104- <name>yoh</name>
33105- <email>kawasaki.liamg@gmail.com</email>
33106- </author>
33107- </entry>
33108-
3310933109</feed>
0 commit comments