reformat code

This commit is contained in:
badaix 2019-09-24 22:52:31 +02:00
parent b20add3815
commit 88b49ad2a0
11 changed files with 2051 additions and 2406 deletions

View file

@ -4,13 +4,13 @@
#include <cstdint>
#ifdef IS_BIG_ENDIAN
# define SWAP_16(x) (__builtin_bswap16(x))
# define SWAP_32(x) (__builtin_bswap32(x))
# define SWAP_64(x) (__builtin_bswap64(x))
#define SWAP_16(x) (__builtin_bswap16(x))
#define SWAP_32(x) (__builtin_bswap32(x))
#define SWAP_64(x) (__builtin_bswap64(x))
#else
# define SWAP_16(x) x
# define SWAP_32(x) x
# define SWAP_64(x) x
#define SWAP_16(x) x
#define SWAP_32(x) x
#define SWAP_64(x) x
#endif
namespace endian
@ -22,28 +22,26 @@ T swap(const T&);
template <>
inline int8_t swap(const int8_t& val)
{
return val;
return val;
}
template <>
inline int16_t swap(const int16_t& val)
{
return SWAP_16(val);
return SWAP_16(val);
}
template <>
inline int32_t swap(const int32_t& val)
{
return SWAP_32(val);
return SWAP_32(val);
}
template <>
inline int64_t swap(const int64_t& val)
{
return SWAP_64(val);
return SWAP_64(val);
}
}
#endif