| 259 | |
| 260 | template <typename T> |
| 261 | void 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 | |
| 273 | template <typename T> |
| 274 | void TestMinMax() |
nothing calls this directly
no outgoing calls
no test coverage detected