2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-07 03:31:52 +00:00

refactor: fix x64 compilation issues in Common,ObjCommon,ObjCompiling,ObjImage components

This commit is contained in:
Jan
2025-04-25 22:55:04 +01:00
committed by Jan Laupetin
parent 5635470b6e
commit ee4301952a
18 changed files with 116 additions and 119 deletions

View File

@ -27,9 +27,9 @@
#define gcc_align(x)
#else
#ifdef _MSVC_LANG
#define type_align(x) __declspec(align(x))
#define tdef_align(x) __declspec(align(x))
#define memb_align(x) __declspec(align(x))
#define type_align(x) /* __declspec(align(x)) */
#define tdef_align(x) /* __declspec(align(x)) */
#define memb_align(x) /* __declspec(align(x)) */
#define gcc_align(x)
#else
#define type_align(x) __attribute__((__aligned__(x)))