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

Function TestCompileIntTraits

Archive/releases/3/TestCompile.cpp:265–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263
264template <typename T>
265void TestCompileIntTraits()
266{
267 bool fSigned = IntTraits<T>::isSigned;
268 bool fis64bit = IntTraits<T>::is64Bit;
269 bool fis32bit = IntTraits<T>::is32Bit;
270 bool fis16bit = IntTraits<T>::is16Bit;
271 bool fis8bit = IntTraits<T>::is8Bit;
272 bool fisLT32Bit = IntTraits<T>::isLT32Bit;
273 bool fisLT64Bit = IntTraits<T>::isLT64Bit;
274 bool fisInt8 = IntTraits<T>::isInt8;
275}
276
277template <typename T>
278void TestMinMax()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected