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 >2024-12-16T02:02:17.220195 </updated >
6
- <id >c600d472-5502-471d-8687-694d08b0dd6f </id >
5
+ <updated >2024-12-16T07:39:41.134025 </updated >
6
+ <id >2880e7e8-0e24-438c-b68f-e44a6268f64f </id >
7
7
8
8
9
+ <entry >
10
+ <title >属性構文 [N2761] -- C++11 属性構文 : indeterminate属性の解説ページにリンク</title >
11
+ <link href =" https://cpprefjp.github.io/lang/cpp11/attributes.html" />
12
+ <id >b956b7708095b80da1c364a4d68cc66d65bde231:lang/cpp11/attributes.md</id >
13
+ <updated >2024-12-16T16:36:37+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/lang/cpp11/attributes.md b/lang/cpp11/attributes.md
16
+ index 1a15b8ba0..b48a93794 100644
17
+ --- a/lang/cpp11/attributes.md
18
+ +++ b/lang/cpp11/attributes.md
19
+ @@ -170,6 +170,7 @@ C++11で採用されたもの以外で検討された以下の機能は、属性
20
+ - [C++20 属性の名前空間を予約](/lang/cpp20/reserving_attribute_namespaces_for_future_use.md)
21
+ - [C++23 ラムダ式に対する属性](/lang/cpp23/attributes_on_lambda_expressions.md)
22
+ - [C++26 構造化束縛への属性を許可](/lang/cpp26/attributes_for_structured_bindings.md)
23
+ +- [C++26 未初期化変数の読み取りをエラー性動作とする (`[[indeterminate]]`属性)](/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md)
24
+
25
+
26
+ ## 参照
27
+ < /code>< /pre> </summary >
28
+
29
+ <author >
30
+ <name >Akira Takahashi</name >
31
+
32
+ </author >
33
+ </entry >
34
+
35
+ <entry >
36
+ <title >未初期化変数の読み取りをエラー性動作とする [P2795R5] -- C++11 属性構文 : indeterminate属性の解説ページにリンク</title >
37
+ <link href =" https://cpprefjp.github.io/lang/cpp26/erroneous_behavior_for_uninitialized_reads.html" />
38
+ <id >b956b7708095b80da1c364a4d68cc66d65bde231:lang/cpp26/erroneous_behavior_for_uninitialized_reads.md</id >
39
+ <updated >2024-12-16T16:36:37+09:00</updated >
40
+
41
+ <summary type =" html" >< pre>< code> diff --git a/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md b/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md
42
+ index 79b80c7ac..4f118a77d 100644
43
+ --- a/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md
44
+ +++ b/lang/cpp26/erroneous_behavior_for_uninitialized_reads.md
45
+ @@ -137,5 +137,8 @@ int main() {
46
+ | 契約違反 | 契約に関する現在の策定作業では、契約違反時になにが起こるべきかという問題に直面している。エラー性動作という概念は有用な回答を与えてくれる可能性がある |
47
+
48
+
49
+ +## 関連項目
50
+ +- [C++11 属性構文](/lang/cpp11/attributes.md)
51
+ +
52
+ ## 参照
53
+ - [P2795R5 Erroneous behaviour for uninitialized reads](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2795r5.html)
54
+ < /code>< /pre> </summary >
55
+
56
+ <author >
57
+ <name >Akira Takahashi</name >
58
+
59
+ </author >
60
+ </entry >
61
+
9
62
<entry >
10
63
<title >jthread -- jthread: コード修飾ミスを修正</title >
11
64
<link href =" https://cpprefjp.github.io/reference/thread/jthread.html" />
@@ -197,31 +250,4 @@ index c5c314468..393499fff 100644
197
250
</author >
198
251
</entry >
199
252
200
- <entry >
201
- <title >common_comparison_category -- 表記の統一</title >
202
- <link href =" https://cpprefjp.github.io/reference/compare/common_comparison_category.html" />
203
- <id >a983f3dd3b01a4f60aec4d82bf3cb37222b492ea:reference/compare/common_comparison_category.md</id >
204
- <updated >2024-12-15T04:47:14+09:00</updated >
205
-
206
- <summary type =" html" >< pre>< code> diff --git a/reference/compare/common_comparison_category.md b/reference/compare/common_comparison_category.md
207
- index ba9a1c749..e14632dab 100644
208
- --- a/reference/compare/common_comparison_category.md
209
- +++ b/reference/compare/common_comparison_category.md
210
- @@ -30,7 +30,7 @@ namespace std {
211
-
212
- `Ts...`内のそれぞれの型を`Ti (0 & lt;= i & lt; N)`として、共通比較カテゴリ型`U`は以下のように決定される。
213
-
214
- -1. `Ti`の中に一つでも比較カテゴリ型でない型がある場合、`U = void`
215
- +1. `Ti`の中に1つでも比較カテゴリ型でない型がある場合、`U = void`
216
- 2. `Ti`の中に1つでも`partial_ordering`がある場合、`U = partial_ordering`
217
- 3. `Ti`の中に1つでも`weak_ordering`がある場合、`U = weak_ordering`
218
- 4. それ以外の場合、`U = strong_ordering`(`N == 0`の場合)
219
- < /code>< /pre> </summary >
220
-
221
- <author >
222
- <name >biobios</name >
223
-
224
- </author >
225
- </entry >
226
-
227
253
</feed >
0 commit comments