Skip to content

Commit 3d433bb

Browse files
committed
style(cstdlib,cstdio,format): メタ識別子は /**/ で囲まない
#1470 (comment) * "/* implementation-defined */ => implementation-defined" の書き換え * "/* unspecified */ => unspecified" の書き換え
1 parent f1add1c commit 3d433bb

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

reference/cstdio/eof.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* macro[meta id-type]
44

55
```cpp
6-
#define EOF /* implementation-defined */
6+
#define EOF implementation-defined
77
```
88
99
## 概要

reference/cstdio/file.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55

66
```cpp
77
namespace std {
8-
using FILE = /* unspecified */;
8+
using FILE = unspecified;
99
}
1010
```
11+
* unspecified[italic]
1112
1213
## 概要
1314
`FILE`型は、ストリームの制御に必要な情報を持つオブジェクト型である。

reference/cstdio/filename_max.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* macro[meta id-type]
44

55
```cpp
6-
#define FILENAME_MAX /* implementation-defined */
6+
#define FILENAME_MAX implementation-defined
77
```
88
99
## 概要

reference/cstdlib/rand_max.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* macro[meta id-type]
44

55
```cpp
6-
#define RAND_MAX /*implementation-defined*/
6+
#define RAND_MAX implementation-defined
77
```
88
99
## 概要

reference/format/formattable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```cpp
88
namespace std {
99
template <class charT>
10-
using fmt-iter-for = /* unspecified */;
10+
using fmt-iter-for = unspecified;
1111

1212
template <class T, class charT>
1313
concept formattable =

0 commit comments

Comments
 (0)