tmp/tmpf8eyk3nn/{from.md → to.md}
RENAMED
|
@@ -2,44 +2,42 @@
|
|
| 2 |
|
| 3 |
#### Types `char16_t` and `char32_t` <a id="diff.char16">[[diff.char16]]</a>
|
| 4 |
|
| 5 |
The types `char16_t` and `char32_t` are distinct types rather than
|
| 6 |
typedefs to existing integral types. The tokens `char16_t` and
|
| 7 |
-
`char32_t` are keywords in
|
| 8 |
-
|
| 9 |
|
| 10 |
#### Type `wchar_t` <a id="diff.wchar.t">[[diff.wchar.t]]</a>
|
| 11 |
|
| 12 |
The type `wchar_t` is a distinct type rather than a typedef to an
|
| 13 |
-
existing integral type. The token `wchar_t` is a keyword in
|
| 14 |
-
|
| 15 |
-
|
| 16 |
|
| 17 |
#### Header `<assert.h>` <a id="diff.header.assert.h">[[diff.header.assert.h]]</a>
|
| 18 |
|
| 19 |
-
The token `static_assert` is a keyword in
|
| 20 |
-
|
| 21 |
|
| 22 |
#### Header `<iso646.h>` <a id="diff.header.iso646.h">[[diff.header.iso646.h]]</a>
|
| 23 |
|
| 24 |
The tokens `and`, `and_eq`, `bitand`, `bitor`, `compl`, `not`, `not_eq`,
|
| 25 |
-
`or`, `or_eq`, `xor`, and `xor_eq` are keywords in
|
| 26 |
-
|
| 27 |
|
| 28 |
#### Header `<stdalign.h>` <a id="diff.header.stdalign.h">[[diff.header.stdalign.h]]</a>
|
| 29 |
|
| 30 |
-
The token `alignas` is a keyword in
|
| 31 |
-
|
| 32 |
|
| 33 |
#### Header `<stdbool.h>` <a id="diff.header.stdbool.h">[[diff.header.stdbool.h]]</a>
|
| 34 |
|
| 35 |
-
The tokens `bool`, `true`, and `false` are keywords in
|
| 36 |
-
|
| 37 |
-
.
|
| 38 |
|
| 39 |
#### Macro `NULL` <a id="diff.null">[[diff.null]]</a>
|
| 40 |
|
| 41 |
The macro `NULL`, defined in any of `<clocale>`, `<cstddef>`,
|
| 42 |
`<cstdio>`, `<cstdlib>`, `<cstring>`, `<ctime>`, or `<cwchar>`, is an
|
| 43 |
-
*implementation-defined*
|
| 44 |
-
Standard [[support.types]].
|
| 45 |
|
|
|
|
| 2 |
|
| 3 |
#### Types `char16_t` and `char32_t` <a id="diff.char16">[[diff.char16]]</a>
|
| 4 |
|
| 5 |
The types `char16_t` and `char32_t` are distinct types rather than
|
| 6 |
typedefs to existing integral types. The tokens `char16_t` and
|
| 7 |
+
`char32_t` are keywords in C++ [[lex.key]]. They do not appear as macro
|
| 8 |
+
or type names defined in `<cuchar>`.
|
| 9 |
|
| 10 |
#### Type `wchar_t` <a id="diff.wchar.t">[[diff.wchar.t]]</a>
|
| 11 |
|
| 12 |
The type `wchar_t` is a distinct type rather than a typedef to an
|
| 13 |
+
existing integral type. The token `wchar_t` is a keyword in C++
|
| 14 |
+
[[lex.key]]. It does not appear as a macro or type name defined in any
|
| 15 |
+
of `<cstddef>`, `<cstdlib>`, or `<cwchar>`.
|
| 16 |
|
| 17 |
#### Header `<assert.h>` <a id="diff.header.assert.h">[[diff.header.assert.h]]</a>
|
| 18 |
|
| 19 |
+
The token `static_assert` is a keyword in C++. It does not appear as a
|
| 20 |
+
macro name defined in `<cassert>`.
|
| 21 |
|
| 22 |
#### Header `<iso646.h>` <a id="diff.header.iso646.h">[[diff.header.iso646.h]]</a>
|
| 23 |
|
| 24 |
The tokens `and`, `and_eq`, `bitand`, `bitor`, `compl`, `not`, `not_eq`,
|
| 25 |
+
`or`, `or_eq`, `xor`, and `xor_eq` are keywords in C++ [[lex.key]], and
|
| 26 |
+
are not introduced as macros by `<iso646.h>`.
|
| 27 |
|
| 28 |
#### Header `<stdalign.h>` <a id="diff.header.stdalign.h">[[diff.header.stdalign.h]]</a>
|
| 29 |
|
| 30 |
+
The token `alignas` is a keyword in C++ [[lex.key]], and is not
|
| 31 |
+
introduced as a macro by `<stdalign.h>`.
|
| 32 |
|
| 33 |
#### Header `<stdbool.h>` <a id="diff.header.stdbool.h">[[diff.header.stdbool.h]]</a>
|
| 34 |
|
| 35 |
+
The tokens `bool`, `true`, and `false` are keywords in C++ [[lex.key]],
|
| 36 |
+
and are not introduced as macros by `<stdbool.h>`.
|
|
|
|
| 37 |
|
| 38 |
#### Macro `NULL` <a id="diff.null">[[diff.null]]</a>
|
| 39 |
|
| 40 |
The macro `NULL`, defined in any of `<clocale>`, `<cstddef>`,
|
| 41 |
`<cstdio>`, `<cstdlib>`, `<cstring>`, `<ctime>`, or `<cwchar>`, is an
|
| 42 |
+
*implementation-defined* null pointer constant in C++ [[support.types]].
|
|
|
|
| 43 |
|