MCPcopy Create free account
hub / github.com/dcleblanc/SafeInt / TestCompileT

Function TestCompileT

Archive/releases/3/TestCompile.cpp:320–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318
319template <typename T>
320void 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
344void TestCompile()
345{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected