Skip to content

Commit

Permalink
Run clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
erlingrj committed Oct 5, 2024
1 parent a2e1e4b commit 68ec2d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tag/api/tag.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@
#define NEVER_TAG \
(tag_t) { .time = NEVER, .microstep = NEVER_MICROSTEP }
// Need a separate initializer expression to comply with some C compilers
#define NEVER_TAG_INITIALIZER {NEVER, NEVER_MICROSTEP}
#define NEVER_TAG_INITIALIZER \
{ NEVER, NEVER_MICROSTEP }
#define FOREVER_TAG \
(tag_t) { .time = FOREVER, .microstep = FOREVER_MICROSTEP }
// Need a separate initializer expression to comply with some C compilers
#define FOREVER_TAG_INITIALIZER {FOREVER, FOREVER_MICROSTEP}
#define FOREVER_TAG_INITIALIZER \
{ FOREVER, FOREVER_MICROSTEP }
#define ZERO_TAG \
(tag_t) { .time = 0LL, .microstep = 0u }

Expand Down

0 comments on commit 68ec2d7

Please sign in to comment.