22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2025-05-01T14:43:41.369763 </updated >
6- <id >51b70be5-1903-4f68-8cd6-fd6a7b314f9e </id >
5+ <updated >2025-05-01T15:45:24.995238 </updated >
6+ <id >978affa5-4572-4c0a-bd08-e7772f510f09 </id >
77
88
9+ <entry >
10+ <title >run_loop -- execution/run_loop: fix typos</title >
11+ <link href =" https://cpprefjp.github.io/reference/execution/execution/run_loop.html" />
12+ <id >c629ec04a7d3e4027016f738ceb1f777f62bb852:reference/execution/execution/run_loop.md</id >
13+ <updated >2025-05-02T00:41:32+09:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/reference/execution/execution/run_loop.md b/reference/execution/execution/run_loop.md
16+ index e87534f35..8a4c149f2 100644
17+ --- a/reference/execution/execution/run_loop.md
18+ +++ b/reference/execution/execution/run_loop.md
19+ @@ -75,9 +75,9 @@ int main()
20+ ex::start(op);
21+ // count=1, state=開始(starting)
22+
23+ - // run_loop状態を終了中(finished)へ変更
24+ + // run_loop状態を終了中(finishing)へ変更
25+ loop.finish();
26+ - // count=1, state=終了中(finished)
27+ + // count=1, state=終了中(finishing)
28+
29+ // run_loopキュー上の作業を逐次実行
30+ loop.run();
31+ < /code>< /pre> </summary >
32+
33+ <author >
34+ <name >yoh</name >
35+ <email >kawasaki.liamg@gmail.com</email >
36+ </author >
37+ </entry >
38+
939 <entry >
1040 <title >sync-wait-receiver -- execution/sync_wait(_with_variant): 微調整 (#1384)</title >
1141 <link href =" https://cpprefjp.github.io/reference/execution/this_thread/sync-wait-receiver.html" />
@@ -1724,36 +1754,4 @@ index 52a2293d5..bb725c838 100644
17241754 </author >
17251755 </entry >
17261756
1727- <entry >
1728- <title >toupper -- reference/cctype/toupper.md: Created sample implementation</title >
1729- <link href =" https://cpprefjp.github.io/reference/cctype/toupper.html" />
1730- <id >665471d98e7999f8c2ab6af4ba0060ce9fb17491:reference/cctype/toupper.md</id >
1731- <updated >2025-04-30T12:56:05+09:00</updated >
1732-
1733- <summary type =" html" >< pre>< code> diff --git a/reference/cctype/toupper.md b/reference/cctype/toupper.md
1734- index b48446459..ca21a5652 100644
1735- --- a/reference/cctype/toupper.md
1736- +++ b/reference/cctype/toupper.md
1737- @@ -42,3 +42,13 @@ toupper(& #39;1& #39;) = 1
1738- toupper(& #39;.& #39;) = .
1739- toupper(& #39;$& #39;) = $
1740- ```
1741- +
1742- +## 実装例
1743- +```cpp
1744- +int toupper(int ch) {
1745- + if (islower(ch)) {
1746- + ch ^= 32;
1747- + }
1748- + return ch;
1749- +}
1750- +```
1751- < /code>< /pre> </summary >
1752-
1753- <author >
1754- <name >rotarymars</name >
1755- <email >s.goto2050@gmail.com</email >
1756- </author >
1757- </entry >
1758-
17591757</feed >
0 commit comments