From d5b983a8c000533ca17b727595e813113cd9d54c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 8 May 2016 23:33:46 -0400 Subject: swap: Get rid of pointer casting for swapping structs These shouldn't haphazardly convert types --- src/common/swap.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/common/swap.h b/src/common/swap.h index beedd6c7e..1749bd7a4 100644 --- a/src/common/swap.h +++ b/src/common/swap.h @@ -510,35 +510,35 @@ bool operator==(const S &p, const swap_struct_t v) { template struct swap_64_t { static T swap(T x) { - return (T)Common::swap64(*(u64 *)&x); + return static_cast(Common::swap64(x)); } }; template struct swap_32_t { static T swap(T x) { - return (T)Common::swap32(*(u32 *)&x); + return static_cast(Common::swap32(x)); } }; template struct swap_16_t { static T swap(T x) { - return (T)Common::swap16(*(u16 *)&x); + return static_cast(Common::swap16(x)); } }; template struct swap_float_t { static T swap(T x) { - return (T)Common::swapf(*(float *)&x); + return static_cast(Common::swapf(x)); } }; template struct swap_double_t { static T swap(T x) { - return (T)Common::swapd(*(double *)&x); + return static_cast(Common::swapd(x)); } }; -- cgit v1.2.3