We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052f01e commit bd529f6Copy full SHA for bd529f6
libs/common/alignment.h
@@ -42,7 +42,11 @@
42
* For example, "struct foo" will not work,
43
* but foo_t will, where "typedef struct foo foo_t".
44
*/
45
-#define AM_ALIGNOF_DEFINE(type) struct alignof_##type { char c; type member; }
+#define AM_ALIGNOF_DEFINE(type) \
46
+ struct alignof_##type { \
47
+ char c; \
48
+ type member; \
49
+ }
50
51
/** The maximum compiler alignment [bytes]. */
52
#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L))
0 commit comments