General: Convert typedefs into using aliases

This commit is contained in:
Lioncash
2019-08-16 04:11:27 -04:00
committed by Phillip Stephens
parent 78ce16aa9f
commit 88355ada5f
10 changed files with 20 additions and 19 deletions

View File

@@ -6,13 +6,13 @@
namespace boo {
typedef union {
union TVectorUnion {
float v[4];
#if __SSE__
__m128 q;
__m64 d[2];
#endif
} TVectorUnion;
};
static constexpr TVectorUnion Min32Vec = {{INT32_MIN, INT32_MIN, INT32_MIN, INT32_MIN}};
static constexpr TVectorUnion Max32Vec = {{INT32_MAX, INT32_MAX, INT32_MAX, INT32_MAX}};