| 257 | } |
| 258 | |
| 259 | void CompileMe() |
| 260 | { |
| 261 | CompileType<char>(); |
| 262 | CompileType<unsigned char>(); |
| 263 | CompileType<signed char>(); |
| 264 | |
| 265 | CompileType<unsigned short>(); |
| 266 | CompileType<signed short>(); |
| 267 | CompileType<unsigned int>(); |
| 268 | CompileType<signed int>(); |
| 269 | CompileType<unsigned long>(); |
| 270 | CompileType<signed long>(); |
| 271 | CompileType<unsigned long long>(); |
| 272 | CompileType<signed long long>(); |
| 273 | |
| 274 | CompileSigned<signed char>(); |
| 275 | CompileSigned<signed short>(); |
| 276 | CompileSigned<signed int>(); |
| 277 | CompileSigned<signed long>(); |
| 278 | CompileSigned<signed long long>(); |
| 279 | |
| 280 | } |
| 281 | |
| 282 | /* |
| 283 | Need to add tests for the miscellaneous helper functions |