tmp/tmpx3znk5rv/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: *simple-type-specifier*{s} and the types they specify** <a id="dcl.type.simple">[dcl.type.simple]</a>
|
| 2 |
+
|
| 3 |
+
| Specifier(s) | Type |
|
| 4 |
+
| ---------------------------- | ------------------------------------------------- |
|
| 5 |
+
| *type-name* | the type named |
|
| 6 |
+
| *simple-template-id* | the type as defined in~ [[temp.names]] |
|
| 7 |
+
| *decltype-specifier* | the type as defined in~ [[dcl.type.decltype]] |
|
| 8 |
+
| *placeholder-type-specifier* | the type as defined in~ [[dcl.spec.auto]] |
|
| 9 |
+
| *template-name* | the type as defined in~ [[dcl.type.class.deduct]] |
|
| 10 |
+
| `char` | ```char`'' |
|
| 11 |
+
| `unsigned char` | ```unsigned char`'' |
|
| 12 |
+
| `signed char` | ```signed char`'' |
|
| 13 |
+
| `char8_t` | ```char8_t`'' |
|
| 14 |
+
| `char16_t` | ```char16_t`'' |
|
| 15 |
+
| `char32_t` | ```char32_t`'' |
|
| 16 |
+
| `bool` | ```bool`'' |
|
| 17 |
+
| `unsigned` | ```unsigned int`'' |
|
| 18 |
+
| `unsigned int` | ```unsigned int`'' |
|
| 19 |
+
| `signed` | ```int`'' |
|
| 20 |
+
| `signed int` | ```int`'' |
|
| 21 |
+
| `int` | ```int`'' |
|
| 22 |
+
| `unsigned short int` | ```unsigned short int`'' |
|
| 23 |
+
| `unsigned short` | ```unsigned short int`'' |
|
| 24 |
+
| `unsigned long int` | ```unsigned long int`'' |
|
| 25 |
+
| `unsigned long` | ```unsigned long int`'' |
|
| 26 |
+
| `unsigned long long int` | ```unsigned long long int`'' |
|
| 27 |
+
| `unsigned long long` | ```unsigned long long int`'' |
|
| 28 |
+
| `signed long int` | ```long int`'' |
|
| 29 |
+
| `signed long` | ```long int`'' |
|
| 30 |
+
| `signed long long int` | ```long long int`'' |
|
| 31 |
+
| `signed long long` | ```long long int`'' |
|
| 32 |
+
| `long long int` | ```long long int`'' |
|
| 33 |
+
| `long long` | ```long long int`'' |
|
| 34 |
+
| `long int` | ```long int`'' |
|
| 35 |
+
| `long` | ```long int`'' |
|
| 36 |
+
| `signed short int` | ```short int`'' |
|
| 37 |
+
| `signed short` | ```short int`'' |
|
| 38 |
+
| `short int` | ```short int`'' |
|
| 39 |
+
| `short` | ```short int`'' |
|
| 40 |
+
| `wchar_t` | ```wchar_t`'' |
|
| 41 |
+
| `float` | ```float`'' |
|
| 42 |
+
| `double` | ```double`'' |
|
| 43 |
+
| `long double` | ```long double`'' |
|
| 44 |
+
| `void` | ```void`'' |
|
| 45 |
+
|