From Jason Turner

[tab:simple.type.specifiers]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpgtfy7zxr/{from.md → to.md} +0 -45
tmp/tmpgtfy7zxr/{from.md → to.md} RENAMED
@@ -1,45 +0,0 @@
1
- **Table: *simple-type-specifier*{s} and the types they specify** <a id="tab:simple.type.specifiers">[tab:simple.type.specifiers]</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
- | *template-name* | placeholder for a type to be deduced |
8
- | char | ``char'' |
9
- | unsigned char | ``unsigned char'' |
10
- | signed char | ``signed char'' |
11
- | char16_t | ``char16_t'' |
12
- | char32_t | ``char32_t'' |
13
- | bool | ``bool'' |
14
- | unsigned | ``unsigned int'' |
15
- | unsigned int | ``unsigned int'' |
16
- | signed | ``int'' |
17
- | signed int | ``int'' |
18
- | int | ``int'' |
19
- | unsigned short int | ``unsigned short int'' |
20
- | unsigned short | ``unsigned short int'' |
21
- | unsigned long int | ``unsigned long int'' |
22
- | unsigned long | ``unsigned long int'' |
23
- | unsigned long long int | ``unsigned long long int'' |
24
- | unsigned long long | ``unsigned long long int'' |
25
- | signed long int | ``long int'' |
26
- | signed long | ``long int'' |
27
- | signed long long int | ``long long int'' |
28
- | signed long long | ``long long int'' |
29
- | long long int | ``long long int'' |
30
- | long long | ``long long int'' |
31
- | long int | ``long int'' |
32
- | long | ``long int'' |
33
- | signed short int | ``short int'' |
34
- | signed short | ``short int'' |
35
- | short int | ``short int'' |
36
- | short | ``short int'' |
37
- | wchar_t | ``wchar_t'' |
38
- | float | ``float'' |
39
- | double | ``double'' |
40
- | long double | ``long double'' |
41
- | void | ``void'' |
42
- | auto | placeholder for a type to be deduced |
43
- | decltype(auto) | placeholder for a type to be deduced |
44
- | decltype(*expression*) | the type as defined below |
45
-