1
0
Fork 0

Remove alignment macros

This commit is contained in:
peterbell10 2017-07-20 13:23:24 +01:00 committed by Tiger Wang
parent a56cfd1f42
commit 5a5297974b
2 changed files with 1 additions and 8 deletions

View File

@ -38,10 +38,6 @@
#define OBSOLETE __declspec(deprecated)
// No alignment needed in MSVC
#define ALIGN_8
#define ALIGN_16
#define FORMATSTRING(formatIndex, va_argsIndex)
// MSVC has its own custom version of zu format
@ -90,9 +86,6 @@
#define OBSOLETE __attribute__((deprecated))
#define ALIGN_8 __attribute__((aligned(8)))
#define ALIGN_16 __attribute__((aligned(16)))
// Some portability macros :)
#define stricmp strcasecmp

View File

@ -45,7 +45,7 @@ private:
std::thread::id m_OwningThreadID;
std::recursive_mutex m_Mutex;
} ALIGN_8;
};