| 342 | } |
| 343 | |
| 344 | void TestCompile() |
| 345 | { |
| 346 | TestCompileT<char>(); |
| 347 | TestCompileT<unsigned char>(); |
| 348 | TestCompileT<signed char>(); |
| 349 | TestCompileT<short>(); |
| 350 | TestCompileT<unsigned short>(); |
| 351 | TestCompileT<int>(); |
| 352 | TestCompileT<unsigned int>(); |
| 353 | TestCompileT<long>(); |
| 354 | TestCompileT<unsigned long>(); |
| 355 | TestCompileT<long long>(); |
| 356 | TestCompileT<unsigned long long>(); |
| 357 | TestCompileT<size_t>(); |
| 358 | TestCompileT<ptrdiff_t>(); |
| 359 | TestCompileT<uintptr_t>(); |
| 360 | TestCompileT<intptr_t>(); |
| 361 | } |
| 362 | |
| 363 | int main(int /*argc*/, char* /*argv[]*/) |
| 364 | { |
nothing calls this directly
no outgoing calls
no test coverage detected