Skip to content

Commit 06fe373

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 4c769a8 commit 06fe373

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

reference/cstdlib/calloc.html

Lines changed: 3 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="2025-07-07T13:10:21">
192-
2025年07月07日 13時10分21秒
191+
<span itemprop="datePublished" content="2025-07-07T15:16:37">
192+
2025年07月07日 15時16分37秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -221,7 +221,7 @@
221221
<h2>概要</h2>
222222
<p>任意の個数のオブジェクトへの配列用ポインタを動的に確保し、その領域を 0 で初期化する。</p>
223223
<p>この関数で返されるポインタは、割当領域の先頭のポインタである。</p>
224-
<p>領域の確保に失敗し た場合は<code><a href="../../lang/cpp11/nullptr.html">nullptr</a></code>を返す。</p>
224+
<p>領域の確保に失敗した場合は<code><a href="../../lang/cpp11/nullptr.html">nullptr</a></code>を返す。</p>
225225
<p>割り当てられたオブジェクトの寿命は、このメモリが割り当てられた時から、<code><a href="free.html">free</a></code>などで解放されるまでである。</p>
226226
<p>この関数は、静的ストレージにはアクセスせず、スレッドセーフである。</p>
227227
<h2>備考</h2>

rss.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,37 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2025-07-07T15:06:46.612278</updated>
6-
<id>bdbb93c4-61e2-4dc0-8f4c-6f92aea47588</id>
5+
<updated>2025-07-07T15:39:27.037324</updated>
6+
<id>4f7261c3-e416-454a-a614-bf5520a7b840</id>
77

88

9+
<entry>
10+
<title>calloc -- delete unnecessary space</title>
11+
<link href="https://cpprefjp.github.io/reference/cstdlib/calloc.html"/>
12+
<id>28dcdfac5b4dd06005971b3fd05155b40ed26280:reference/cstdlib/calloc.md</id>
13+
<updated>2025-07-08T00:16:37+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/calloc.md b/reference/cstdlib/calloc.md
16+
index c370b8ad1..834985107 100644
17+
--- a/reference/cstdlib/calloc.md
18+
+++ b/reference/cstdlib/calloc.md
19+
@@ -16,7 +16,7 @@ namespace std {
20+
21+
この関数で返されるポインタは、割当領域の先頭のポインタである。
22+
23+
-領域の確保に失敗し た場合は、[`nullptr`](/lang/cpp11/nullptr.md)を返す。
24+
+領域の確保に失敗した場合は、[`nullptr`](/lang/cpp11/nullptr.md)を返す。
25+
26+
割り当てられたオブジェクトの寿命は、このメモリが割り当てられた時から、[`free`](free.md)などで解放されるまでである。
27+
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>K10-K10</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>emplace -- flatなコンテナのemplace/_hintの計算量追記</title>
1138
<link href="https://cpprefjp.github.io/reference/flat_map/flat_map/emplace.html"/>
@@ -438,33 +465,6 @@ index 98990cf85..6820bc78f 100644
438465

439466
## 参照
440467

441-
&lt;/code&gt;&lt;/pre&gt;</summary>
442-
443-
<author>
444-
<name>K10-K10</name>
445-
<email>[email protected]</email>
446-
</author>
447-
</entry>
448-
449-
<entry>
450-
<title>free -- 文法の修正</title>
451-
<link href="https://cpprefjp.github.io/reference/cstdlib/free.html"/>
452-
<id>f189c2260e14694f7db6fbb34b27cc00006d27e8:reference/cstdlib/free.md</id>
453-
<updated>2025-07-07T22:12:57+09:00</updated>
454-
455-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cstdlib/free.md b/reference/cstdlib/free.md
456-
index fd1dc695a..389c2fbb8 100644
457-
--- a/reference/cstdlib/free.md
458-
+++ b/reference/cstdlib/free.md
459-
@@ -12,7 +12,7 @@ namespace std {
460-
## 概要
461-
`malloc`、`calloc`、`aligned_alloc`、`realloc`で確保されたメモリ領域を解放する。
462-
463-
-解放済みのポインタを再度 `free` に渡したり、アクセスしたりすると未定義動作となる。
464-
+解放済みのポインタを再度 `free` に渡したり、アクセスしたりするときの動作は未定義となる。
465-
466-
ポインタが`nullptr`の場合、この関数は何も実行しない。
467-
468468
&lt;/code&gt;&lt;/pre&gt;</summary>
469469

470470
<author>

sitemap.xml

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

3143431434
<url>
3143531435
<loc>https://cpprefjp.github.io/reference/cstdlib/calloc.html</loc>
31436-
<lastmod>2025-07-07T22:10:21+09:00</lastmod>
31436+
<lastmod>2025-07-08T00:16:37+09:00</lastmod>
3143731437
<changefreq>daily</changefreq>
3143831438
<priority>0.7</priority>
3143931439
</url>

0 commit comments

Comments
 (0)