From a8cdee9ee6dfce6a89d03acc1fbef859f3aa846c Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 24 Mar 2022 13:38:31 +0100 Subject: Rename custom __packed__ attribute to __o3000_packed__ Note: It is generally a bad idea to create identifier that start with an underscore [1]. In macOS the identifier __packed__ is already defined, because the packed attribute is written as __attribute__ ((__packed__)), which causes the code to fail to compile. To solve the problem this commit replaces __packed__ with __o3000_packed__. [1]: https://en.cppreference.com/w/c/language/identifier#Reserved_identifiers --- o3000_portable.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'o3000_portable.h') diff --git a/o3000_portable.h b/o3000_portable.h index 4e7da6a..5489699 100644 --- a/o3000_portable.h +++ b/o3000_portable.h @@ -96,12 +96,16 @@ typedef unsigned __int64 uint64_t; #if defined(_MSC_VER) #define __func__ __FUNCTION__ -#define __packed__ __packed +#define __o3000_packed__ __packed + +#elif defined(__APPLE__) + +#define __o3000_packed__ __attribute__ ((__packed__)) #else /* define nothing for __func__ because it's used as default macro at source code */ -#define __packed__ __attribute__ ((packed)) +#define __o3000_packed__ __attribute__ ((packed)) #endif // defined(_MSC_VER) -- cgit v1.2.1