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

Function TestCompileT

Archive/releases/5/TestCompile.cpp:316–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314
315template <typename T>
316void 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
340void TestCompile()
341{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected