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