Skip to content

Commit bd529f6

Browse files
committed
Fix code formatting
1 parent 052f01e commit bd529f6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

libs/common/alignment.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
* For example, "struct foo" will not work,
4343
* but foo_t will, where "typedef struct foo foo_t".
4444
*/
45-
#define AM_ALIGNOF_DEFINE(type) struct alignof_##type { char c; type member; }
45+
#define AM_ALIGNOF_DEFINE(type) \
46+
struct alignof_##type { \
47+
char c; \
48+
type member; \
49+
}
4650

4751
/** The maximum compiler alignment [bytes]. */
4852
#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L))

0 commit comments

Comments
 (0)