[ox/std] Add OX_ALIGN8

This commit is contained in:
Gary Talent 2020-07-11 23:40:16 -05:00
parent 740e0286d0
commit 7b7a8d75b4

View File

@ -25,3 +25,9 @@
#else
#define OX_ALIGN4 __attribute__((aligned(4)))
#endif
#ifdef _MSC_VER
#define OX_ALIGN8
#else
#define OX_ALIGN8 __attribute__((aligned(8)))
#endif