| 75 | |
| 76 | template <typename InputInt, typename OutputInt> |
| 77 | inline typename std::enable_if<(sizeof(InputInt) >= sizeof(OutputInt))>::type CastInts( |
| 78 | const InputInt* source, OutputInt* dest, int64_t length) { |
| 79 | DowncastInts(source, dest, length); |
| 80 | } |
| 81 | |
| 82 | template <typename InputInt, typename OutputInt> |
| 83 | inline typename std::enable_if<(sizeof(InputInt) < sizeof(OutputInt))>::type CastInts( |
no test coverage detected