clang-format: use TypenameMacros
This commit removes line breaks and extra empty lines introduced in
commit fff3f79da9
.
This commit is contained in:
committed by
Orestis Floros
parent
83078a1e16
commit
e3a1c5b294
20
src/x.c
20
src/x.c
@ -63,26 +63,18 @@ typedef struct con_state {
|
||||
|
||||
char *name;
|
||||
|
||||
CIRCLEQ_ENTRY(con_state)
|
||||
state;
|
||||
|
||||
CIRCLEQ_ENTRY(con_state)
|
||||
old_state;
|
||||
|
||||
TAILQ_ENTRY(con_state)
|
||||
initial_mapping_order;
|
||||
CIRCLEQ_ENTRY(con_state) state;
|
||||
CIRCLEQ_ENTRY(con_state) old_state;
|
||||
TAILQ_ENTRY(con_state) initial_mapping_order;
|
||||
} con_state;
|
||||
|
||||
CIRCLEQ_HEAD(state_head, con_state)
|
||||
state_head =
|
||||
CIRCLEQ_HEAD(state_head, con_state) state_head =
|
||||
CIRCLEQ_HEAD_INITIALIZER(state_head);
|
||||
|
||||
CIRCLEQ_HEAD(old_state_head, con_state)
|
||||
old_state_head =
|
||||
CIRCLEQ_HEAD(old_state_head, con_state) old_state_head =
|
||||
CIRCLEQ_HEAD_INITIALIZER(old_state_head);
|
||||
|
||||
TAILQ_HEAD(initial_mapping_head, con_state)
|
||||
initial_mapping_head =
|
||||
TAILQ_HEAD(initial_mapping_head, con_state) initial_mapping_head =
|
||||
TAILQ_HEAD_INITIALIZER(initial_mapping_head);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user