summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-05-09 05:33:46 +0200
committerLioncash <mathew1800@gmail.com>2016-05-09 05:33:52 +0200
commitd5b983a8c000533ca17b727595e813113cd9d54c (patch)
tree4fa60b58f6336bbf15eb8621e082cbd8b7126f19
parentswap: Get rid of undefined behavior in swapf and swapd (diff)
downloadyuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar.gz
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar.bz2
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar.lz
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar.xz
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.tar.zst
yuzu-d5b983a8c000533ca17b727595e813113cd9d54c.zip
-rw-r--r--src/common/swap.h10
1 files changed, 5 insertions, 5 deletions
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<T, F> v) {
template <typename T>
struct swap_64_t {
static T swap(T x) {
- return (T)Common::swap64(*(u64 *)&x);
+ return static_cast<T>(Common::swap64(x));
}
};
template <typename T>
struct swap_32_t {
static T swap(T x) {
- return (T)Common::swap32(*(u32 *)&x);
+ return static_cast<T>(Common::swap32(x));
}
};
template <typename T>
struct swap_16_t {
static T swap(T x) {
- return (T)Common::swap16(*(u16 *)&x);
+ return static_cast<T>(Common::swap16(x));
}
};
template <typename T>
struct swap_float_t {
static T swap(T x) {
- return (T)Common::swapf(*(float *)&x);
+ return static_cast<T>(Common::swapf(x));
}
};
template <typename T>
struct swap_double_t {
static T swap(T x) {
- return (T)Common::swapd(*(double *)&x);
+ return static_cast<T>(Common::swapd(x));
}
};