|
1302 | 1302 | {tab:simple.type.specifiers}
|
1303 | 1303 | {ll}
|
1304 | 1304 | \topline
|
1305 |
| -\hdstyle{Specifier(s)} & \hdstyle{Type} \\ \capsep |
1306 |
| -\grammarterm{type-name} & the type named \\ |
1307 |
| -\grammarterm{simple-template-id} & the type as defined in~\ref{temp.names} \\ |
1308 |
| -\grammarterm{template-name} & placeholder for a type to be deduced\\ |
1309 |
| -char & ``char'' \\ |
1310 |
| -unsigned char & ``unsigned char'' \\ |
1311 |
| -signed char & ``signed char'' \\ |
1312 |
| -char16_t & ``char16_t'' \\ |
1313 |
| -char32_t & ``char32_t'' \\ |
1314 |
| -bool & ``bool'' \\ |
1315 |
| -unsigned & ``unsigned int'' \\ |
1316 |
| -unsigned int & ``unsigned int'' \\ |
1317 |
| -signed & ``int'' \\ |
1318 |
| -signed int & ``int'' \\ |
1319 |
| -int & ``int'' \\ |
1320 |
| -unsigned short int & ``unsigned short int'' \\ |
1321 |
| -unsigned short & ``unsigned short int'' \\ |
1322 |
| -unsigned long int & ``unsigned long int'' \\ |
1323 |
| -unsigned long & ``unsigned long int'' \\ |
1324 |
| -unsigned long long int & ``unsigned long long int''\\ |
1325 |
| -unsigned long long & ``unsigned long long int''\\ |
1326 |
| -signed long int & ``long int'' \\ |
1327 |
| -signed long & ``long int'' \\ |
1328 |
| -signed long long int & ``long long int'' \\ |
1329 |
| -signed long long & ``long long int'' \\ |
1330 |
| -long long int & ``long long int'' \\ |
1331 |
| -long long & ``long long int'' \\ |
1332 |
| -long int & ``long int'' \\ |
1333 |
| -long & ``long int'' \\ |
1334 |
| -signed short int & ``short int'' \\ |
1335 |
| -signed short & ``short int'' \\ |
1336 |
| -short int & ``short int'' \\ |
1337 |
| -short & ``short int'' \\ |
1338 |
| -wchar_t & ``wchar_t'' \\ |
1339 |
| -float & ``float'' \\ |
1340 |
| -double & ``double'' \\ |
1341 |
| -long double & ``long double'' \\ |
1342 |
| -void & ``void'' \\ |
1343 |
| -auto & placeholder for a type to be deduced\\ |
1344 |
| -decltype(auto) & placeholder for a type to be deduced\\ |
1345 |
| -decltype(\grammarterm{expression}) & the type as defined below\\ |
| 1305 | +\hdstyle{Specifier(s)} & \hdstyle{Type} \\ \capsep |
| 1306 | +\grammarterm{type-name} & the type named \\ |
| 1307 | +\grammarterm{simple-template-id} & the type as defined in~\ref{temp.names}\\ |
| 1308 | +\grammarterm{template-name} & placeholder for a type to be deduced\\ |
| 1309 | +\tcode{char} & ``\tcode{char}'' \\ |
| 1310 | +\tcode{unsigned char} & ``\tcode{unsigned char}'' \\ |
| 1311 | +\tcode{signed char} & ``\tcode{signed char}'' \\ |
| 1312 | +\tcode{char16_t} & ``\tcode{char16_t}'' \\ |
| 1313 | +\tcode{char32_t} & ``\tcode{char32_t}'' \\ |
| 1314 | +\tcode{bool} & ``\tcode{bool}'' \\ |
| 1315 | +\tcode{unsigned} & ``\tcode{unsigned int}'' \\ |
| 1316 | +\tcode{unsigned int} & ``\tcode{unsigned int}'' \\ |
| 1317 | +\tcode{signed} & ``\tcode{int}'' \\ |
| 1318 | +\tcode{signed int} & ``\tcode{int}'' \\ |
| 1319 | +\tcode{int} & ``\tcode{int}'' \\ |
| 1320 | +\tcode{unsigned short int} & ``\tcode{unsigned short int}'' \\ |
| 1321 | +\tcode{unsigned short} & ``\tcode{unsigned short int}'' \\ |
| 1322 | +\tcode{unsigned long int} & ``\tcode{unsigned long int}'' \\ |
| 1323 | +\tcode{unsigned long} & ``\tcode{unsigned long int}'' \\ |
| 1324 | +\tcode{unsigned long long int} & ``\tcode{unsigned long long int}''\\ |
| 1325 | +\tcode{unsigned long long} & ``\tcode{unsigned long long int}''\\ |
| 1326 | +\tcode{signed long int} & ``\tcode{long int}'' \\ |
| 1327 | +\tcode{signed long} & ``\tcode{long int}'' \\ |
| 1328 | +\tcode{signed long long int} & ``\tcode{long long int}'' \\ |
| 1329 | +\tcode{signed long long} & ``\tcode{long long int}'' \\ |
| 1330 | +\tcode{long long int} & ``\tcode{long long int}'' \\ |
| 1331 | +\tcode{long long} & ``\tcode{long long int}'' \\ |
| 1332 | +\tcode{long int} & ``\tcode{long int}'' \\ |
| 1333 | +\tcode{long} & ``\tcode{long int}'' \\ |
| 1334 | +\tcode{signed short int} & ``\tcode{short int}'' \\ |
| 1335 | +\tcode{signed short} & ``\tcode{short int}'' \\ |
| 1336 | +\tcode{short int} & ``\tcode{short int}'' \\ |
| 1337 | +\tcode{short} & ``\tcode{short int}'' \\ |
| 1338 | +\tcode{wchar_t} & ``\tcode{wchar_t}'' \\ |
| 1339 | +\tcode{float} & ``\tcode{float}'' \\ |
| 1340 | +\tcode{double} & ``\tcode{double}'' \\ |
| 1341 | +\tcode{long double} & ``\tcode{long double}'' \\ |
| 1342 | +\tcode{void} & ``\tcode{void}'' \\ |
| 1343 | +\tcode{auto} & placeholder for a type to be deduced\\ |
| 1344 | +\tcode{decltype(auto)} & placeholder for a type to be deduced\\ |
| 1345 | +\tcode{decltype(}\grammartermnc{expression}\tcode{)} |
| 1346 | + & the type as defined below\\ |
1346 | 1347 | \end{simpletypetable}
|
1347 | 1348 |
|
1348 | 1349 | \pnum
|
|
0 commit comments