Skip to content

Commit e3b69f8

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent a3e337c commit e3b69f8

File tree

4 files changed

+67
-90
lines changed

4 files changed

+67
-90
lines changed

reference/debugging/breakpoint.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-09-18T04:13:25">
192-
2024年09月18日 04時13分25秒
191+
<span itemprop="datePublished" content="2024-09-18T14:31:22">
192+
2024年09月18日 14時31分22秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -220,7 +220,8 @@
220220
</p>
221221
<h2>概要</h2>
222222
<p>ブレークポイントを設置する。</p>
223-
<p>この関数は無条件のブレークポイントであり、デバッガがプログラムを監視しているかに関わらずプログラムの一時停止 (ブレーク) を試みる。</p>
223+
<p>この関数は無条件のブレークポイントであり、デバッガの存在を検出できない状況でもプログラムの一時停止 (ブレーク) を試みる。</p>
224+
<p>プログラムコードでブレークポイントを指定できると、複雑な実行時条件でプログラムを一時停止させることができる。</p>
224225
<h2>効果</h2>
225226
<p>標準規格としては、この関数の意味論は<a class="cpprefjp-defined-word" data-desc="処理系定義の動作。処理系によって事前に定めた動作をする" href="../../implementation-compliance.html#dfn-implementation-defined-behavior">実装定義</a>である。</p>
226227
<p>実際の動作としては、この関数が呼び出されるとプログラムの実行が一時停止され、以下のいずれかの時点までデバッガに制御が渡される:</p>

reference/debugging/is_debugger_present.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-09-18T04:13:25">
192-
2024年09月18日 04時13分25秒
191+
<span itemprop="datePublished" content="2024-09-18T14:31:22">
192+
2024年09月18日 14時31分22秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -221,6 +221,7 @@
221221
<h2>概要</h2>
222222
<p>デバッガ実行中か判定する。</p>
223223
<p>この関数は、デバッガがプログラムを監視中かどうかを判定する。プラットフォーム固有の結果を決定できない場合、ユーザーがこの関数を定義することで柔軟に動作を制御できる。</p>
224+
<p>プログラムがデバッガ実行中かを判定できることで、デバッガ実行中に問題の診断に役立つ追加の出力やテストができる。</p>
224225
<h2>置き換え可能</h2>
225226
<p>ユーザーのプログラムでこの関数を定義することで、標準ライブラリで定義されるデフォルトの動作を置き換えることができる。</p>
226227
<h2>要求される振る舞い</h2>

rss.xml

Lines changed: 58 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,66 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2024-09-18T09:19:06.106486</updated>
6-
<id>e2b9fefb-ac36-4760-ad86-0fab1f95daa7</id>
5+
<updated>2024-09-18T14:34:45.647841</updated>
6+
<id>1f0e2e94-24ab-4fc4-b59f-d50ce806bfdc</id>
77

88

9+
<entry>
10+
<title>breakpoint -- &lt;debugging&gt; : ユースケースを記載 #1232</title>
11+
<link href="https://cpprefjp.github.io/reference/debugging/breakpoint.html"/>
12+
<id>dd8477c7aae368c8df41f61c6d65fe9bbfb47a42:reference/debugging/breakpoint.md</id>
13+
<updated>2024-09-18T23:31:22+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/debugging/breakpoint.md b/reference/debugging/breakpoint.md
16+
index 62f370aef..eb882cec9 100644
17+
--- a/reference/debugging/breakpoint.md
18+
+++ b/reference/debugging/breakpoint.md
19+
@@ -13,8 +13,9 @@ namespace std {
20+
## 概要
21+
ブレークポイントを設置する。
22+
23+
-この関数は無条件のブレークポイントであり、デバッガがプログラムを監視しているかに関わらずプログラムの一時停止 (ブレーク) を試みる。
24+
+この関数は無条件のブレークポイントであり、デバッガの存在を検出できない状況でもプログラムの一時停止 (ブレーク) を試みる。
25+
26+
+プログラムコードでブレークポイントを指定できると、複雑な実行時条件でプログラムを一時停止させることができる。
27+
28+
29+
## 効果
30+
&lt;/code&gt;&lt;/pre&gt;</summary>
31+
32+
<author>
33+
<name>Akira Takahashi</name>
34+
<email>[email protected]</email>
35+
</author>
36+
</entry>
37+
38+
<entry>
39+
<title>is_debugger_present -- &lt;debugging&gt; : ユースケースを記載 #1232</title>
40+
<link href="https://cpprefjp.github.io/reference/debugging/is_debugger_present.html"/>
41+
<id>dd8477c7aae368c8df41f61c6d65fe9bbfb47a42:reference/debugging/is_debugger_present.md</id>
42+
<updated>2024-09-18T23:31:22+09:00</updated>
43+
44+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/debugging/is_debugger_present.md b/reference/debugging/is_debugger_present.md
45+
index 721f4f41e..098f6e296 100644
46+
--- a/reference/debugging/is_debugger_present.md
47+
+++ b/reference/debugging/is_debugger_present.md
48+
@@ -15,6 +15,8 @@ namespace std {
49+
50+
この関数は、デバッガがプログラムを監視中かどうかを判定する。プラットフォーム固有の結果を決定できない場合、ユーザーがこの関数を定義することで柔軟に動作を制御できる。
51+
52+
+プログラムがデバッガ実行中かを判定できることで、デバッガ実行中に問題の診断に役立つ追加の出力やテストができる。
53+
+
54+
55+
## 置き換え可能
56+
ユーザーのプログラムでこの関数を定義することで、標準ライブラリで定義されるデフォルトの動作を置き換えることができる。
57+
&lt;/code&gt;&lt;/pre&gt;</summary>
58+
59+
<author>
60+
<name>Akira Takahashi</name>
61+
<email>[email protected]</email>
62+
</author>
63+
</entry>
64+
965
<entry>
1066
<title>debugging -- breakpoint_if_debugging : 脱字を修正 #1232</title>
1167
<link href="https://cpprefjp.github.io/reference/debugging.html"/>
@@ -473,87 +529,6 @@ index 4cabd44f4..721f4f41e 100644
473529
```
474530

475531

476-
&lt;/code&gt;&lt;/pre&gt;</summary>
477-
478-
<author>
479-
<name>Akira Takahashi</name>
480-
<email>[email protected]</email>
481-
</author>
482-
</entry>
483-
484-
<entry>
485-
<title>breakpoint -- &lt;debugging&gt; : MSVCの実装状況をまちがえた #1232</title>
486-
<link href="https://cpprefjp.github.io/reference/debugging/breakpoint.html"/>
487-
<id>6572301df3e91804b2d1ec3fa49071eb3626ec35:reference/debugging/breakpoint.md</id>
488-
<updated>2024-09-18T12:36:29+09:00</updated>
489-
490-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/debugging/breakpoint.md b/reference/debugging/breakpoint.md
491-
index 8b0d35282..eca120ffc 100644
492-
--- a/reference/debugging/breakpoint.md
493-
+++ b/reference/debugging/breakpoint.md
494-
@@ -74,7 +74,7 @@ int main() {
495-
### 処理系
496-
- [Clang](/implementation.md#clang): 19 [mark noimpl]
497-
- [GCC](/implementation.md#gcc): 14 [mark noimpl]
498-
-- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10
499-
+- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10 [mark noimpl]
500-
501-
502-
## 参照
503-
&lt;/code&gt;&lt;/pre&gt;</summary>
504-
505-
<author>
506-
<name>Akira Takahashi</name>
507-
<email>[email protected]</email>
508-
</author>
509-
</entry>
510-
511-
<entry>
512-
<title>breakpoint_if_debugging -- &lt;debugging&gt; : MSVCの実装状況をまちがえた #1232</title>
513-
<link href="https://cpprefjp.github.io/reference/debugging/breakpoint_if_debugging.html"/>
514-
<id>6572301df3e91804b2d1ec3fa49071eb3626ec35:reference/debugging/breakpoint_if_debugging.md</id>
515-
<updated>2024-09-18T12:36:29+09:00</updated>
516-
517-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/debugging/breakpoint_if_debugging.md b/reference/debugging/breakpoint_if_debugging.md
518-
index 9850e11da..742e93cb9 100644
519-
--- a/reference/debugging/breakpoint_if_debugging.md
520-
+++ b/reference/debugging/breakpoint_if_debugging.md
521-
@@ -76,7 +76,7 @@ int main() {
522-
### 処理系
523-
- [Clang](/implementation.md#clang): 19 [mark noimpl]
524-
- [GCC](/implementation.md#gcc): 14 [mark noimpl]
525-
-- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10
526-
+- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10 [mark noimpl]
527-
528-
529-
## 参照
530-
&lt;/code&gt;&lt;/pre&gt;</summary>
531-
532-
<author>
533-
<name>Akira Takahashi</name>
534-
<email>[email protected]</email>
535-
</author>
536-
</entry>
537-
538-
<entry>
539-
<title>is_debugger_present -- &lt;debugging&gt; : MSVCの実装状況をまちがえた #1232</title>
540-
<link href="https://cpprefjp.github.io/reference/debugging/is_debugger_present.html"/>
541-
<id>6572301df3e91804b2d1ec3fa49071eb3626ec35:reference/debugging/is_debugger_present.md</id>
542-
<updated>2024-09-18T12:36:29+09:00</updated>
543-
544-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/debugging/is_debugger_present.md b/reference/debugging/is_debugger_present.md
545-
index 0d4454818..4cabd44f4 100644
546-
--- a/reference/debugging/is_debugger_present.md
547-
+++ b/reference/debugging/is_debugger_present.md
548-
@@ -85,7 +85,7 @@ int main() {
549-
### 処理系
550-
- [Clang](/implementation.md#clang): 19 [mark noimpl]
551-
- [GCC](/implementation.md#gcc): 14 [mark noimpl]
552-
-- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10
553-
+- [Visual C++](/implementation.md#visual_cpp): 2022 Update 10 [mark noimpl]
554-
555-
556-
## 参照
557532
&lt;/code&gt;&lt;/pre&gt;</summary>
558533

559534
<author>

sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22438,14 +22438,14 @@
2243822438

2243922439
<url>
2244022440
<loc>https://cpprefjp.github.io/reference/debugging/breakpoint.html</loc>
22441-
<lastmod>2024-09-18T13:13:25+09:00</lastmod>
22441+
<lastmod>2024-09-18T23:31:22+09:00</lastmod>
2244222442
<changefreq>daily</changefreq>
2244322443
<priority>0.7</priority>
2244422444
</url>
2244522445

2244622446
<url>
2244722447
<loc>https://cpprefjp.github.io/reference/debugging/is_debugger_present.html</loc>
22448-
<lastmod>2024-09-18T13:13:25+09:00</lastmod>
22448+
<lastmod>2024-09-18T23:31:22+09:00</lastmod>
2244922449
<changefreq>daily</changefreq>
2245022450
<priority>0.7</priority>
2245122451
</url>

0 commit comments

Comments
 (0)