| 314 | |
| 315 | template <typename T> |
| 316 | void TestCompileT() |
| 317 | { |
| 318 | TestCompileTU<T, char>(); |
| 319 | TestCompileTU<T, unsigned char>(); |
| 320 | TestCompileTU<T, signed char>(); |
| 321 | TestCompileTU<T, short>(); |
| 322 | TestCompileTU<T, unsigned short>(); |
| 323 | TestCompileTU<T, int>(); |
| 324 | TestCompileTU<T, unsigned int>(); |
| 325 | TestCompileTU<T, long>(); |
| 326 | TestCompileTU<T, unsigned long>(); |
| 327 | TestCompileTU<T, long long>(); |
| 328 | TestCompileTU<T, unsigned long long>(); |
| 329 | TestCompileTU<T, size_t>(); |
| 330 | TestCompileTU<T, ptrdiff_t>(); |
| 331 | TestCompileTU<T, uintptr_t>(); |
| 332 | TestCompileTU<T, intptr_t>(); |
| 333 | TestCompileIntTraits<T>(); |
| 334 | TestMinMax<T>(); |
| 335 | TestPtrRef<T>(); |
| 336 | TestUnary<T>(); |
| 337 | TestPrefixPostfix<T>(); |
| 338 | } |
| 339 | |
| 340 | void TestCompile() |
| 341 | { |
nothing calls this directly
no outgoing calls
no test coverage detected