Skip to content

Commit 741bccb

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent f8ad663 commit 741bccb

File tree

6 files changed

+37
-37
lines changed

6 files changed

+37
-37
lines changed

reference/chrono/make24.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h2>例</h2>
239239
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">12h</a></span><span class="p">,</span> <span class="nb">false</span><span class="p">)</span> <span class="o">==</span> <span class="n"><a href="duration/op_h.html">0h</a></span><span class="p">);</span>
240240

241241
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">12h</a></span><span class="p">,</span> <span class="nb">true</span><span class="p">)</span> <span class="o">==</span> <span class="n"><a href="duration/op_h.html">12h</a></span><span class="p">);</span>
242-
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">1h</a></span><span class="p">,</span> <span class="nb">true</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1u</span><span class="n">glNUjAHWVWoeYmmkiMQtxxwOiZUqkHZ</span><span class="p">);</span>
242+
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">1h</a></span><span class="p">,</span> <span class="nb">true</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span><span class="n"><a href="duration/op_h.html">3h</a></span><span class="p">);</span>
243243
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">3h</a></span><span class="p">,</span> <span class="nb">true</span><span class="p">)</span> <span class="o">==</span> <span class="n"><a href="duration/op_h.html">15h</a></span><span class="p">);</span>
244244
<span class="n"><a href="../cassert/assert.html">assert</a></span><span class="p">(</span><span class="n"><span style="color:#ff0000">chrono::make24</span></span><span class="p">(</span><span class="n"><a href="duration/op_h.html">11h</a></span><span class="p">,</span> <span class="nb">true</span><span class="p">)</span> <span class="o">==</span> <span class="n"><a href="duration/op_h.html">23h</a></span><span class="p">);</span>
245245
<span class="p">}</span>

reference/ratio/si_prefix.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<meta name="viewport" content="width=device-width,initial-scale=1">
2222
<meta name="keywords" content="
23-
C++,標準ライブラリ,リファレンス,ドキュメント,STL,std,ratio,std,type-alias,cpp11
23+
C++,標準ライブラリ,リファレンス,ドキュメント,STL,std,ratio,std,type-alias,cpp11,quecto,ronto,yocto,zepto,atto,femto,pico,nano,micro,milli,centi,deci,deca,hecto,kilo,mega,giga,tera,peta,exa,zetta,yotta,ronna,quetta
2424
">
2525
<meta name="title" content="SI接頭辞 - cpprefjp C++日本語リファレンス" />
2626
<meta itemprop="name" content="SI接頭辞 - cpprefjp C++日本語リファレンス" />
@@ -68,7 +68,7 @@
6868

6969
</head>
7070
<body>
71-
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;ratio&#34;], &#34;namespace&#34;: [&#34;std&#34;], &#34;id-type&#34;: [&#34;type-alias&#34;], &#34;cpp&#34;: [&#34;cpp11&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;b968f2849b3955f51dd653389f5b7581721e124a&#34;, &#34;source&#34;: &#34;#include &lt;iostream&gt;\n#include &lt;ratio&gt;\n#include &lt;chrono&gt;\n\n// \u30df\u30ea\u30e1\u30fc\u30c8\u30eb\u3001\u30bb\u30f3\u30c1\u30e1\u30fc\u30c8\u30eb\u3001\u30e1\u30fc\u30c8\u30eb\nusing milli_meter = std::chrono::duration&lt;float, std::milli&gt;;\nusing centi_meter = std::chrono::duration&lt;float, std::centi&gt;;\nusing meter = std::chrono::duration&lt;float, std::ratio&lt;1&gt;&gt;;\n\n// \u4e09\u89d2\u5f62\u306e\u9762\u7a4d\n// base : \u5e95\u8fba\n// height : \u9ad8\u3055\ncenti_meter triangle_area(centi_meter base, centi_meter height)\n{\n return base * height.count() / centi_meter::rep(2.0);\n}\n\nint main()\n{\n milli_meter base(3000); // 3000mm -&gt; 300cm\n meter height(1); // 1m -&gt; 100cm\n\n centi_meter area = triangle_area(base, height);\n\n std::cout &lt;&lt; area.count() &lt;&lt; std::endl;\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;ratio&#34;, &#34;si_prefix&#34;]}">
71+
<header data-kunai-mdinfo="{&#34;meta&#34;: {&#34;header&#34;: [&#34;ratio&#34;], &#34;namespace&#34;: [&#34;std&#34;], &#34;id-type&#34;: [&#34;type-alias&#34;], &#34;cpp&#34;: [&#34;cpp11&#34;], &#34;alias&#34;: [&#34;quecto,ronto,yocto,zepto,atto,femto,pico,nano,micro,milli,centi,deci,deca,hecto,kilo,mega,giga,tera,peta,exa,zetta,yotta,ronna,quetta&#34;]}, &#34;sources&#34;: [{&#34;id&#34;: &#34;b968f2849b3955f51dd653389f5b7581721e124a&#34;, &#34;source&#34;: &#34;#include &lt;iostream&gt;\n#include &lt;ratio&gt;\n#include &lt;chrono&gt;\n\n// \u30df\u30ea\u30e1\u30fc\u30c8\u30eb\u3001\u30bb\u30f3\u30c1\u30e1\u30fc\u30c8\u30eb\u3001\u30e1\u30fc\u30c8\u30eb\nusing milli_meter = std::chrono::duration&lt;float, std::milli&gt;;\nusing centi_meter = std::chrono::duration&lt;float, std::centi&gt;;\nusing meter = std::chrono::duration&lt;float, std::ratio&lt;1&gt;&gt;;\n\n// \u4e09\u89d2\u5f62\u306e\u9762\u7a4d\n// base : \u5e95\u8fba\n// height : \u9ad8\u3055\ncenti_meter triangle_area(centi_meter base, centi_meter height)\n{\n return base * height.count() / centi_meter::rep(2.0);\n}\n\nint main()\n{\n milli_meter base(3000); // 3000mm -&gt; 300cm\n meter height(1); // 1m -&gt; 100cm\n\n centi_meter area = triangle_area(base, height);\n\n std::cout &lt;&lt; area.count() &lt;&lt; std::endl;\n}\n&#34;}], &#34;page_id&#34;: [&#34;reference&#34;, &#34;ratio&#34;, &#34;si_prefix&#34;]}">
7272
<nav class="navbar navbar-default" role="navigation">
7373
<div class="container-fluid">
7474
<div class="navbar-header">
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
192-
2024年06月11日 13時45分38秒
191+
<span itemprop="datePublished" content="2026-01-08T11:50:50">
192+
2026年01月08日 11時50分50秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">yoh</span>
197197
</span>
198198
が更新
199199
</small></p>

rss.xml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,36 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2026-01-08T11:50:19.614735</updated>
6-
<id>bcb04de2-8944-437a-aa6a-b2c2df6cbe40</id>
5+
<updated>2026-01-08T11:55:08.059345</updated>
6+
<id>dc72a2b0-ff13-41e3-a180-d4bfae56d4ef</id>
77

88

9+
<entry>
10+
<title>SI接頭辞 -- ratio/si_prefix: meta aliasタグ追加(#1545)</title>
11+
<link href="https://cpprefjp.github.io/reference/ratio/si_prefix.html"/>
12+
<id>542d90ba4fbe24a28f662ef04b61d573a0524527:reference/ratio/si_prefix.md</id>
13+
<updated>2026-01-08T20:50:50+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/ratio/si_prefix.md b/reference/ratio/si_prefix.md
16+
index a3fcae033..371f76500 100644
17+
--- a/reference/ratio/si_prefix.md
18+
+++ b/reference/ratio/si_prefix.md
19+
@@ -3,6 +3,7 @@
20+
* std[meta namespace]
21+
* type-alias[meta id-type]
22+
* cpp11[meta cpp]
23+
+* quecto,ronto,yocto,zepto,atto,femto,pico,nano,micro,milli,centi,deci,deca,hecto,kilo,mega,giga,tera,peta,exa,zetta,yotta,ronna,quetta[meta alias]
24+
25+
```cpp
26+
namespace std {
27+
&lt;/code&gt;&lt;/pre&gt;</summary>
28+
29+
<author>
30+
<name>yoh</name>
31+
<email>kawasaki.liamg@gmail.com</email>
32+
</author>
33+
</entry>
34+
935
<entry>
1036
<title>basic_filebuf -- {*stream,ios,streambuf}: meta aliasタグ追加(#1545)</title>
1137
<link href="https://cpprefjp.github.io/reference/fstream/basic_filebuf.html"/>
@@ -646,32 +672,6 @@ index 03558e00b..d2cd7bb2c 100644
646672
* cpp20[meta cpp]
647673
+* binary_semaphore[meta alias]
648674

649-
```cpp
650-
namespace std {
651-
&lt;/code&gt;&lt;/pre&gt;</summary>
652-
653-
<author>
654-
<name>yoh</name>
655-
<email>kawasaki.liamg@gmail.com</email>
656-
</author>
657-
</entry>
658-
659-
<entry>
660-
<title>basic_stacktrace -- stacktrace/basic_stacktrace: meta aliasタグ追加(#1545)</title>
661-
<link href="https://cpprefjp.github.io/reference/stacktrace/basic_stacktrace.html"/>
662-
<id>555fc5bdeceac2d3ccd16f6791650b04328eee2e:reference/stacktrace/basic_stacktrace.md</id>
663-
<updated>2026-01-08T20:17:46+09:00</updated>
664-
665-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/stacktrace/basic_stacktrace.md b/reference/stacktrace/basic_stacktrace.md
666-
index fa1b3632a..51abb4624 100644
667-
--- a/reference/stacktrace/basic_stacktrace.md
668-
+++ b/reference/stacktrace/basic_stacktrace.md
669-
@@ -3,6 +3,7 @@
670-
* std[meta namespace]
671-
* class template[meta id-type]
672-
* cpp23[meta cpp]
673-
+* stacktrace[meta alias]
674-
675675
```cpp
676676
namespace std {
677677
&lt;/code&gt;&lt;/pre&gt;</summary>

sitemap.xml

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

3488534885
<url>
3488634886
<loc>https://cpprefjp.github.io/reference/ratio/si_prefix.html</loc>
34887-
<lastmod>2026-01-07T22:38:55+09:00</lastmod>
34887+
<lastmod>2026-01-08T20:50:50+09:00</lastmod>
3488834888
<changefreq>daily</changefreq>
3488934889
<priority>0.7</priority>
3489034890
</url>

static/crsearch/crsearch.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/crsearch/crsearch.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)