Skip to content

Commit bbaa624

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 069c50d commit bbaa624

File tree

3 files changed

+62
-376
lines changed

3 files changed

+62
-376
lines changed

reference/cstdlib/realloc.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2025-07-08T11:57:19">
192-
2025年07月08日 11時57分19秒
191+
<span itemprop="datePublished" content="2025-07-08T14:06:37">
192+
2025年07月08日 14時06分37秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">K10-K10</span>
196+
<span itemprop="name">Akira Takahashi</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -229,13 +229,13 @@ <h2>効果</h2>
229229
<li>
230230
<p>既存のメモリを拡張、縮小する。</p>
231231
<p>縮小した場合、再確保されたメモリのサイズまでの領域の内容が保持される。</p>
232-
<p>拡張した場合、新しい領域の内容は<a class="cpprefjp-defined-word" data-desc="未定義の動作。処理系は予期せぬ動作をする可能性がある。要するに動作保証対象外。undefined behavior (UB)。" href="../../implementation-compliance.html#dfn-undefined-behavior">未定義</a></p>
232+
<p>拡張した場合、新しい領域の内容は<a class="cpprefjp-defined-word" data-desc="未規定の動作。事前の断りなく処理系によって異なる動作をする" href="../../implementation-compliance.html#dfn-unspecified-behavior">未規定</a></p>
233233
</li>
234234
<li>
235235
<p>新しいサイズの領域を確保、割り当てする。その後、新しいサイズと古いサイズのいずれか小さい方のサイズに等しいメモリ領域をコピーし、古いブロックを解放する。</p>
236236
</li>
237237
<li>
238-
<p>メモリが不足している場合、<code>nullpte</code>が返される。</p>
238+
<p>メモリが不足している場合、<code>nullptr</code>が返される。</p>
239239
</li>
240240
</ul>
241241
<h2>備考</h2>

0 commit comments

Comments
 (0)