[freerdp,api] check __clang__ at ALIGN64

while __GNUC__ is usually defined explicitely check for __clang__ too
This commit is contained in:
akallabeth 2024-03-12 12:23:12 +01:00 committed by Martin Fleisz
parent d87d598305
commit 95cae82af6

View File

@ -103,7 +103,7 @@
((_cb != NULL) ? _cb(__VA_ARGS__) : (_default_return))
#endif
#if defined(__GNUC__)
#if defined(__GNUC__) || defined(__clang__)
#define ALIGN64 __attribute__((aligned(8)))
#else
#ifdef _WIN32