diff options
author | Nao Pross <np@0hm.ch> | 2022-03-24 13:38:31 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2022-03-24 13:38:31 +0100 |
commit | a8cdee9ee6dfce6a89d03acc1fbef859f3aa846c (patch) | |
tree | ce1b5e9c3993c9b70e0eb05f49713f655de14b04 | |
parent | Merge branch 'firmware_upgrade' into 'master' (diff) | |
download | o3000-driver-macOS.tar.gz o3000-driver-macOS.zip |
Rename custom __packed__ attribute to __o3000_packed__macOS
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
Diffstat (limited to '')
-rw-r--r-- | image_header.h | 2 | ||||
-rw-r--r-- | o3000_portable.h | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/image_header.h b/image_header.h index b4eb2fc..13fa7e0 100644 --- a/image_header.h +++ b/image_header.h @@ -151,7 +151,7 @@ struct img_header_t { uint16_t fov_y_end; ///< end y-cooredinate of current field of view (2 bytes)
uint8_t padding[452]; ///< padding bytes to fill header (452 bytes)
-} __packed__;
+} __o3000_packed__;
#endif // _IMAGE_HEADER_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)
|