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

Function TestCompileIntTraits

Archive/releases/5/TestCompile.cpp:261–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected