Skip to content

Commit ad67223

Browse files
Update src/content/docs/cpp/language/preprocessor.mdx
remove "non-standard" from "non-standard extension" Co-authored-by: A. Jiang <de34@live.cn>
1 parent b16f791 commit ad67223

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/cpp/language/preprocessor.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The preprocessing directives control the behavior of the preprocessor. Each dire
1717
* the `#` character.
1818
* a sequence of:
1919
* a standard-defined directive name (listed [below](#Capabilities)) followed by the corresponding arguments, or
20-
* one or more <DocLink src="/cpp/language/translation_phases" anchor="Phase_3">preprocessing tokens</DocLink> where the beginning token is not a standard-defined directive name, in this case the directive is conditionally-supported with implementation-defined semantics <Revision until="C++23">(e.g. a common non-standard extension is the directive `#warning` which emits a user-defined message during compilation)</Revision>, or
20+
* one or more <DocLink src="/cpp/language/translation_phases" anchor="Phase_3">preprocessing tokens</DocLink> where the beginning token is not a standard-defined directive name, in this case the directive is conditionally-supported with implementation-defined semantics <Revision until="C++23">(e.g. a common extension is the directive `#warning` which emits a user-defined message during compilation)</Revision>, or
2121
* nothing, in this case the directive has no effect.
2222
* a line break.
2323

0 commit comments

Comments
 (0)