| 17 | |
| 18 | template<class T> |
| 19 | typename std::enable_if<std::is_integral<T>::value && sizeof(T) == sizeof(uint8_t),T>::type |
| 20 | byte_swap(T val) |
| 21 | { |
| 22 | return val; |
| 23 | } |
| 24 | |
| 25 | template<class T> |
| 26 | typename std::enable_if<std::is_integral<T>::value && sizeof(T) == sizeof(uint16_t),T>::type |
no outgoing calls
no test coverage detected