2
2
<feed xmlns =" http://www.w3.org/2005/Atom" >
3
3
<title >cpprefjp - C++日本語リファレンス</title >
4
4
<link href =" https://cpprefjp.github.io" />
5
- <updated >2025-07-06T07:40:39.786157 </updated >
6
- <id >b1961fa9-2b6a-4a3d-a923-c4f82985b93e </id >
5
+ <updated >2025-07-06T07:48:19.161190 </updated >
6
+ <id >09a427cb-f0ab-404e-b3cd-2c9f572b8518 </id >
7
7
8
8
9
+ <entry >
10
+ <title >rand -- add path to `random`library</title >
11
+ <link href =" https://cpprefjp.github.io/reference/cstdlib/rand.html" />
12
+ <id >129dc5c77180cc9f2f6379bd1ff3013fb2b39456:reference/cstdlib/rand.md</id >
13
+ <updated >2025-07-06T16:44:06+09:00</updated >
14
+
15
+ <summary type =" html" >< pre>< code> diff --git a/reference/cstdlib/rand.md b/reference/cstdlib/rand.md
16
+ index e451faa51..057ed18d8 100644
17
+ --- a/reference/cstdlib/rand.md
18
+ +++ b/reference/cstdlib/rand.md
19
+ @@ -44,3 +44,4 @@ int main()
20
+ ## 関連項目
21
+ - [`srand()`](srand.md):この関数の疑似乱数生成器で使用するシード値を決定する。
22
+ - [`RAND_MAX`]():この関数で返される疑似乱数の最大値。
23
+ +- [`random`](/reference/random.md):より安全な乱数生成ライブラリ。
24
+ < /code>< /pre> </summary >
25
+
26
+ <author >
27
+ <name >K10-K10</name >
28
+
29
+ </author >
30
+ </entry >
31
+
9
32
<entry >
10
33
<title >srand -- add pat to `ramd.md`</title >
11
34
<link href =" https://cpprefjp.github.io/reference/cstdlib/srand.html" />
@@ -992,209 +1015,4 @@ index 0a5decc9e..f8e466185 100644
992
1015
</author >
993
1016
</entry >
994
1017
995
- <entry >
996
- <title >code -- fix some English description</title >
997
- <link href =" https://cpprefjp.github.io/reference/filesystem/filesystem_error/code.html" />
998
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/code.md</id >
999
- <updated >2025-07-06T16:12:08+09:00</updated >
1000
-
1001
- <summary type =" html" >< pre>< code> diff --git a/reference/filesystem/filesystem_error/code.md b/reference/filesystem/filesystem_error/code.md
1002
- index a17e7e6fa..36fe507ef 100644
1003
- --- a/reference/filesystem/filesystem_error/code.md
1004
- +++ b/reference/filesystem/filesystem_error/code.md
1005
- @@ -29,7 +29,7 @@ int main()
1006
- {
1007
- try {
1008
- throw fs::filesystem_error(
1009
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1010
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1011
- std::make_error_code(std::errc::no_such_file_or_directory)
1012
- );
1013
- }
1014
- < /code>< /pre> </summary >
1015
-
1016
- <author >
1017
- <name >suomesta</name >
1018
-
1019
- </author >
1020
- </entry >
1021
-
1022
- <entry >
1023
- <title >コンストラクタ -- fix some English description</title >
1024
- <link href =" https://cpprefjp.github.io/reference/filesystem/filesystem_error/op_constructor.html" />
1025
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/op_constructor.md</id >
1026
- <updated >2025-07-06T16:12:08+09:00</updated >
1027
-
1028
- <summary type =" html" >< pre>< code> diff --git a/reference/filesystem/filesystem_error/op_constructor.md b/reference/filesystem/filesystem_error/op_constructor.md
1029
- index 4c4666798..52b5825db 100644
1030
- --- a/reference/filesystem/filesystem_error/op_constructor.md
1031
- +++ b/reference/filesystem/filesystem_error/op_constructor.md
1032
- @@ -64,7 +64,7 @@ int main()
1033
- // (1)
1034
- try {
1035
- throw fs::filesystem_error(
1036
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1037
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1038
- std::make_error_code(std::errc::no_such_file_or_directory)
1039
- );
1040
- }
1041
- @@ -75,7 +75,7 @@ int main()
1042
- // (2)
1043
- try {
1044
- throw fs::filesystem_error(
1045
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1046
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1047
- & #34;a/b.txt& #34;,
1048
- std::make_error_code(std::errc::no_such_file_or_directory)
1049
- );
1050
- @@ -87,7 +87,7 @@ int main()
1051
- // (3)
1052
- try {
1053
- throw fs::filesystem_error(
1054
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1055
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1056
- & #34;a/from.txt& #34;,
1057
- & #34;b/to.txt& #34;,
1058
- std::make_error_code(std::errc::no_such_file_or_directory)
1059
- @@ -104,9 +104,9 @@ int main()
1060
-
1061
- ### 出力例
1062
- ```
1063
- -filesystem error: can& #39;t copy file. source file doesn& #39;t found: No such file or directory
1064
- -filesystem error: can& #39;t copy file. source file doesn& #39;t found: No such file or directory [a/b.txt]
1065
- -filesystem error: can& #39;t copy file. source file doesn& #39;t found: No such file or directory [a/from.txt] [b/to.txt]
1066
- +filesystem error: can& #39;t copy file. source file isn& #39;t found: No such file or directory
1067
- +filesystem error: can& #39;t copy file. source file isn& #39;t found: No such file or directory [a/b.txt]
1068
- +filesystem error: can& #39;t copy file. source file isn& #39;t found: No such file or directory [a/from.txt] [b/to.txt]
1069
- ```
1070
-
1071
- ## バージョン
1072
- < /code>< /pre> </summary >
1073
-
1074
- <author >
1075
- <name >suomesta</name >
1076
-
1077
- </author >
1078
- </entry >
1079
-
1080
- <entry >
1081
- <title >path1 -- fix some English description</title >
1082
- <link href =" https://cpprefjp.github.io/reference/filesystem/filesystem_error/path1.html" />
1083
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/path1.md</id >
1084
- <updated >2025-07-06T16:12:08+09:00</updated >
1085
-
1086
- <summary type =" html" >< pre>< code> diff --git a/reference/filesystem/filesystem_error/path1.md b/reference/filesystem/filesystem_error/path1.md
1087
- index 197a5b692..76a68f789 100644
1088
- --- a/reference/filesystem/filesystem_error/path1.md
1089
- +++ b/reference/filesystem/filesystem_error/path1.md
1090
- @@ -29,7 +29,7 @@ int main()
1091
- {
1092
- try {
1093
- throw fs::filesystem_error(
1094
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1095
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1096
- & #34;a/from.txt& #34;,
1097
- & #34;b/to.txt& #34;,
1098
- std::make_error_code(std::errc::no_such_file_or_directory)
1099
- < /code>< /pre> </summary >
1100
-
1101
- <author >
1102
- <name >suomesta</name >
1103
-
1104
- </author >
1105
- </entry >
1106
-
1107
- <entry >
1108
- <title >path2 -- fix some English description</title >
1109
- <link href =" https://cpprefjp.github.io/reference/filesystem/filesystem_error/path2.html" />
1110
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/path2.md</id >
1111
- <updated >2025-07-06T16:12:08+09:00</updated >
1112
-
1113
- <summary type =" html" >< pre>< code> diff --git a/reference/filesystem/filesystem_error/path2.md b/reference/filesystem/filesystem_error/path2.md
1114
- index d38e955aa..4c1aa5cd9 100644
1115
- --- a/reference/filesystem/filesystem_error/path2.md
1116
- +++ b/reference/filesystem/filesystem_error/path2.md
1117
- @@ -29,7 +29,7 @@ int main()
1118
- {
1119
- try {
1120
- throw fs::filesystem_error(
1121
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1122
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1123
- & #34;a/from.txt& #34;,
1124
- & #34;b/to.txt& #34;,
1125
- std::make_error_code(std::errc::no_such_file_or_directory)
1126
- < /code>< /pre> </summary >
1127
-
1128
- <author >
1129
- <name >suomesta</name >
1130
-
1131
- </author >
1132
- </entry >
1133
-
1134
- <entry >
1135
- <title >what -- fix some English description</title >
1136
- <link href =" https://cpprefjp.github.io/reference/filesystem/filesystem_error/what.html" />
1137
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/filesystem/filesystem_error/what.md</id >
1138
- <updated >2025-07-06T16:12:08+09:00</updated >
1139
-
1140
- <summary type =" html" >< pre>< code> diff --git a/reference/filesystem/filesystem_error/what.md b/reference/filesystem/filesystem_error/what.md
1141
- index ed147a12e..9a5235cd3 100644
1142
- --- a/reference/filesystem/filesystem_error/what.md
1143
- +++ b/reference/filesystem/filesystem_error/what.md
1144
- @@ -30,7 +30,7 @@ int main()
1145
- {
1146
- try {
1147
- throw fs::filesystem_error(
1148
- - & #34;can& #39;t copy file. source file doesn& #39;t found& #34;,
1149
- + & #34;can& #39;t copy file. source file isn& #39;t found& #34;,
1150
- std::make_error_code(std::errc::no_such_file_or_directory)
1151
- );
1152
- }
1153
- @@ -45,7 +45,7 @@ int main()
1154
-
1155
- ### 出力例
1156
- ```
1157
- -filesystem error: can& #39;t copy file. source file doesn& #39;t found: No such file or directory
1158
- +filesystem error: can& #39;t copy file. source file isn& #39;t found: No such file or directory
1159
- ```
1160
-
1161
- ## バージョン
1162
- < /code>< /pre> </summary >
1163
-
1164
- <author >
1165
- <name >suomesta</name >
1166
-
1167
- </author >
1168
- </entry >
1169
-
1170
- <entry >
1171
- <title >is_final -- fix some English description</title >
1172
- <link href =" https://cpprefjp.github.io/reference/type_traits/is_final.html" />
1173
- <id >9b4133cee544880cb7a43a3934dbd2c16d024fb5:reference/type_traits/is_final.md</id >
1174
- <updated >2025-07-06T16:12:08+09:00</updated >
1175
-
1176
- <summary type =" html" >< pre>< code> diff --git a/reference/type_traits/is_final.md b/reference/type_traits/is_final.md
1177
- index 0a5decc9e..f8e466185 100644
1178
- --- a/reference/type_traits/is_final.md
1179
- +++ b/reference/type_traits/is_final.md
1180
- @@ -39,9 +39,9 @@ namespace std {
1181
- struct A {};
1182
- struct B final {};
1183
-
1184
- -static_assert(std::is_final& lt;A& gt;::value == false, & #34;A is a not final class& #34;);
1185
- +static_assert(std::is_final& lt;A& gt;::value == false, & #34;A is not a final class& #34;);
1186
- static_assert(std::is_final& lt;B& gt;::value == true, & #34;B is a final class& #34;);
1187
- -static_assert(std::is_final& lt;int& gt;::value == false, & #34;int is a not final class& #34;);
1188
- +static_assert(std::is_final& lt;int& gt;::value == false, & #34;int is not a final class& #34;);
1189
-
1190
- int main(){}
1191
- ```
1192
- < /code>< /pre> </summary >
1193
-
1194
- <author >
1195
- <name >suomesta</name >
1196
-
1197
- </author >
1198
- </entry >
1199
-
1200
1018
</feed >
0 commit comments