Undef bswap macroses if needed.

GitOrigin-RevId: 864c725f32d19152bf658853e7648c3f9c62d3a4
This commit is contained in:
levlam 2019-04-30 21:25:17 +03:00
parent 234cf0d9f3
commit 63bf6e5135

View File

@ -12,6 +12,14 @@
#include <intrin.h>
#endif
#ifdef bswap32
#undef bswap32
#endif
#ifdef bswap64
#undef bswap64
#endif
namespace td {
inline int32 count_leading_zeroes32(uint32 x);