Skip to content

Commit 8803d5c

Browse files
Preview PR 1535: 46574a9261aa4e
1 parent a9398ec commit 8803d5c

4 files changed

Lines changed: 39 additions & 42 deletions

File tree

gen/pull/1535/PREVIEW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# PR [\#1535](https://github.com/cpprefjp/site/pull/1535) プレビュー
2-
- ⌚ 更新時刻: 2025-10-09 16:04:32 JST
2+
- ⌚ 更新時刻: 2025-10-09 16:10:32 JST
33
- 🔍 [プレビュー (HTML)](https://cpprefjp.github.io/site/gen/pull/1535)
44
- 📈 [プレビュー生成記録](https://github.com/cpprefjp/site/actions?query=event%3Apull_request_target+branch%3Aatomic_reduction)
5-
- **⫯** ソースの変更: [`261aa4e..d28b143`](https://github.com/cpprefjp/site/compare/261aa4ea914d3b0e3368954303e27c94ad616c57..d28b14327d20759a554d98899d8b7bfb6235c1eb)
5+
- **⫯** ソースの変更: [`261aa4e..46574a9`](https://github.com/cpprefjp/site/compare/261aa4ea914d3b0e3368954303e27c94ad616c57..46574a949df981f2794fc338ba6d406bff0223e2)
66

77
## 変更記事一覧 (31件)
88

gen/pull/1535/reference/atomic/atomic/store_or.html

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@
200200

201201
<p class="text-right"><small>
202202
最終更新日時(UTC):
203-
<span itemprop="datePublished" content="2025-10-09T06:59:45">
204-
2025年10月09日 06時59分45秒
203+
<span itemprop="datePublished" content="2025-10-09T07:05:27">
204+
2025年10月09日 07時05分27秒
205205
</span>
206206
<br/>
207207
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -252,15 +252,6 @@ <h2><a class="cpprefjp-defined-word" data-desc="関数等の意味論を構成
252252
</ul>
253253
</li>
254254
</ul>
255-
<h2><a class="cpprefjp-defined-word" data-desc="関数等の意味論を構成する要素の1つ。Preconditions。関数呼び出し時に満たされていると関数が想定する条件。満たさなければ未定義の動作。契約属性の`[[expects]]`に相当">事前条件</a></h2>
256-
<ul>
257-
<li><code>order</code>は、以下のいずれかであること<ul>
258-
<li><code><a href="../memory_order.html">memory_order_relaxed</a></code></li>
259-
<li><code><a href="../memory_order.html">memory_order_release</a></code></li>
260-
<li><code><a href="../memory_order.html">memory_order_seq_cst</a></code></li>
261-
</ul>
262-
</li>
263-
</ul>
264255
<h2>効果</h2>
265256
<p><code>order</code>で指定されたメモリオーダーにしたがって、現在の値に<code>operand</code>をORした値でアトミックに置き換える</p>
266257
<h2><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a></h2>

gen/pull/1535/rss.xml

Lines changed: 34 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,42 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-10-09T07:04:31.412854</updated>
6-
<id>4a7d0ead-1ce2-424b-bc23-30ab596b4b00</id>
5+
<updated>2025-10-09T07:10:31.396773</updated>
6+
<id>91cd7d7c-0298-43c7-be39-a657ae95b6bf</id>
77

88

9+
<entry>
10+
<title>store_or -- 事前条件のダブりを削除</title>
11+
<link href="https://cpprefjp.github.io/reference/atomic/atomic/store_or.html"/>
12+
<id>46574a949df981f2794fc338ba6d406bff0223e2:reference/atomic/atomic/store_or.md</id>
13+
<updated>2025-10-09T16:05:27+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/atomic/atomic/store_or.md b/reference/atomic/atomic/store_or.md
16+
index c432124cb..1f798560f 100644
17+
--- a/reference/atomic/atomic/store_or.md
18+
+++ b/reference/atomic/atomic/store_or.md
19+
@@ -29,13 +29,6 @@ constexpr void
20+
- (1) : `atomic&amp;lt;T&amp;gt;::is_always_lock_free`が`true`であること
21+
22+
23+
-## 事前条件
24+
-- `order`は、以下のいずれかであること
25+
- - [`memory_order_relaxed`](/reference/atomic/memory_order.md)
26+
- - [`memory_order_release`](/reference/atomic/memory_order.md)
27+
- - [`memory_order_seq_cst`](/reference/atomic/memory_order.md)
28+
-
29+
-
30+
## 事前条件
31+
- `order`は、以下のいずれかであること
32+
- [`memory_order_relaxed`](/reference/atomic/memory_order.md)
33+
&lt;/code&gt;&lt;/pre&gt;</summary>
34+
35+
<author>
36+
<name>Akira Takahashi</name>
37+
<email>faithandbrave@gmail.com</email>
38+
</author>
39+
</entry>
40+
941
<entry>
1042
<title>store_add -- いろいろ間違ってた</title>
1143
<link href="https://cpprefjp.github.io/reference/atomic/atomic/store_add.html"/>
@@ -5143,30 +5175,4 @@ index b67913eb2..4054207ff 100644
51435175
</author>
51445176
</entry>
51455177

5146-
<entry>
5147-
<title>operator void* -- basic_ios::operator void*() に cpp11removed を追加</title>
5148-
<link href="https://cpprefjp.github.io/reference/ios/basic_ios/op_voidptr.html"/>
5149-
<id>40fb86521438e97ebab138cbe47c891bdd778dae:reference/ios/basic_ios/op_voidptr.md</id>
5150-
<updated>2025-10-04T18:21:15+09:00</updated>
5151-
5152-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/ios/basic_ios/op_voidptr.md b/reference/ios/basic_ios/op_voidptr.md
5153-
index 44b8ae7b5..a0c358357 100644
5154-
--- a/reference/ios/basic_ios/op_voidptr.md
5155-
+++ b/reference/ios/basic_ios/op_voidptr.md
5156-
@@ -3,6 +3,7 @@
5157-
* std[meta namespace]
5158-
* basic_ios[meta class]
5159-
* function[meta id-type]
5160-
+* cpp11removed[meta cpp]
5161-
5162-
```cpp
5163-
operator void*() const;
5164-
&lt;/code&gt;&lt;/pre&gt;</summary>
5165-
5166-
<author>
5167-
<name>Raclamusi</name>
5168-
<email>raclamusi@gmail.com</email>
5169-
</author>
5170-
</entry>
5171-
51725178
</feed>

gen/pull/1535/sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21668,7 +21668,7 @@
2166821668

2166921669
<url>
2167021670
<loc>https://cpprefjp.github.io/reference/atomic/atomic/store_or.html</loc>
21671-
<lastmod>2025-10-09T15:59:45+09:00</lastmod>
21671+
<lastmod>2025-10-09T16:05:27+09:00</lastmod>
2167221672
<changefreq>daily</changefreq>
2167321673
<priority>0.6</priority>
2167421674
</url>

0 commit comments

Comments
 (0)