| 263 | |
| 264 | template <typename T> |
| 265 | void 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 | |
| 277 | template <typename T> |
| 278 | void TestMinMax() |
nothing calls this directly
no outgoing calls
no test coverage detected