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-09-19T17:23:38.942617 </updated >
6
- <id >251feb78-f23a-4015-8299-4dc75d136086 </id >
5
+ <updated >2024-09-20T00:13:56.810849 </updated >
6
+ <id >56e79b06-06f8-4c5f-930b-35462ce9b80d </id >
7
7
8
8
9
+ <entry >
10
+ <title >コンストラクタ -- 箇条書きの表示崩れを修正</title >
11
+ <link href =" https://cpprefjp.github.io/reference/random/uniform_real_distribution/op_constructor.html" />
12
+ <id >dee2ab32078f385fb64fecae9cb0b6bcb7f767b7:reference/random/uniform_real_distribution/op_constructor.md</id >
13
+ <updated >2024-09-20T09:10:59+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/reference/random/uniform_real_distribution/op_constructor.md b/reference/random/uniform_real_distribution/op_constructor.md
16
+ index b2dc13309..990146a3d 100644
17
+ --- a/reference/random/uniform_real_distribution/op_constructor.md
18
+ +++ b/reference/random/uniform_real_distribution/op_constructor.md
19
+ @@ -84,4 +84,4 @@ int main()
20
+
21
+ - [P0935R0 Eradicating unnecessarily explicit default constructors from the standard library](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0935r0.html)
22
+ - [C++ の std::uniform_real_distribution はあまり信用できない。](https://qiita.com/Nabetani/items/b6b5f80c77b92ff8bd9f)
23
+ - - a ≤ x & lt; b なるx を返すはずであるが、その範囲外の値が返ってくるライブラリ実装が存在することの指摘。
24
+ + - a ≤ x & lt; b なるx を返すはずであるが、その範囲外の値が返ってくるライブラリ実装が存在することの指摘。
25
+ < /code>< /pre> </summary >
26
+
27
+ <author >
28
+ <name >Akira Takahashi</name >
29
+ <email >faithandbrave@gmail.com</email >
30
+ </author >
31
+ </entry >
32
+
9
33
<entry >
10
34
<title >if文とswitch文の条件式と初期化を分離 [P0305R1] -- コードの誤りを修正</title >
11
35
<link href =" https://cpprefjp.github.io/lang/cpp17/selection_statements_with_initializer.html" />
@@ -211,60 +235,4 @@ index d64649495..b2dc13309 100644
211
235
</author >
212
236
</entry >
213
237
214
- <entry >
215
- <title >breakpoint -- < debugging> : ユースケースを記載 #1232</title >
216
- <link href =" https://cpprefjp.github.io/reference/debugging/breakpoint.html" />
217
- <id >dd8477c7aae368c8df41f61c6d65fe9bbfb47a42:reference/debugging/breakpoint.md</id >
218
- <updated >2024-09-18T23:31:22+09:00</updated >
219
-
220
- <summary type =" html" >< pre>< code> diff --git a/reference/debugging/breakpoint.md b/reference/debugging/breakpoint.md
221
- index 62f370aef..eb882cec9 100644
222
- --- a/reference/debugging/breakpoint.md
223
- +++ b/reference/debugging/breakpoint.md
224
- @@ -13,8 +13,9 @@ namespace std {
225
- ## 概要
226
- ブレークポイントを設置する。
227
-
228
- -この関数は無条件のブレークポイントであり、デバッガがプログラムを監視しているかに関わらずプログラムの一時停止 (ブレーク) を試みる。
229
- +この関数は無条件のブレークポイントであり、デバッガの存在を検出できない状況でもプログラムの一時停止 (ブレーク) を試みる。
230
-
231
- +プログラムコードでブレークポイントを指定できると、複雑な実行時条件でプログラムを一時停止させることができる。
232
-
233
-
234
- ## 効果
235
- < /code>< /pre> </summary >
236
-
237
- <author >
238
- <name >Akira Takahashi</name >
239
- <email >faithandbrave@gmail.com</email >
240
- </author >
241
- </entry >
242
-
243
- <entry >
244
- <title >is_debugger_present -- < debugging> : ユースケースを記載 #1232</title >
245
- <link href =" https://cpprefjp.github.io/reference/debugging/is_debugger_present.html" />
246
- <id >dd8477c7aae368c8df41f61c6d65fe9bbfb47a42:reference/debugging/is_debugger_present.md</id >
247
- <updated >2024-09-18T23:31:22+09:00</updated >
248
-
249
- <summary type =" html" >< pre>< code> diff --git a/reference/debugging/is_debugger_present.md b/reference/debugging/is_debugger_present.md
250
- index 721f4f41e..098f6e296 100644
251
- --- a/reference/debugging/is_debugger_present.md
252
- +++ b/reference/debugging/is_debugger_present.md
253
- @@ -15,6 +15,8 @@ namespace std {
254
-
255
- この関数は、デバッガがプログラムを監視中かどうかを判定する。プラットフォーム固有の結果を決定できない場合、ユーザーがこの関数を定義することで柔軟に動作を制御できる。
256
-
257
- +プログラムがデバッガ実行中かを判定できることで、デバッガ実行中に問題の診断に役立つ追加の出力やテストができる。
258
- +
259
-
260
- ## 置き換え可能
261
- ユーザーのプログラムでこの関数を定義することで、標準ライブラリで定義されるデフォルトの動作を置き換えることができる。
262
- < /code>< /pre> </summary >
263
-
264
- <author >
265
- <name >Akira Takahashi</name >
266
- <email >faithandbrave@gmail.com</email >
267
- </author >
268
- </entry >
269
-
270
238
</feed >
0 commit comments