diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-07-03 22:16:37 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-07-03 22:16:37 +0200 |
commit | 07c77d4c24177ac3e11cafd27f34c9a758008db6 (patch) | |
tree | 3f3bd5c35fc89799203290369886825050d01b59 /test/bitfield.cc | |
parent | 26f0cbe721028bdd1733db3424d38490c3f85b94 (diff) | |
download | cpp-utils-07c77d4c24177ac3e11cafd27f34c9a758008db6.tar.gz cpp-utils-07c77d4c24177ac3e11cafd27f34c9a758008db6.zip |
make: add clang-format lint target
Diffstat (limited to 'test/bitfield.cc')
-rw-r--r-- | test/bitfield.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bitfield.cc b/test/bitfield.cc index 77bb286..0d4dcac 100644 --- a/test/bitfield.cc +++ b/test/bitfield.cc @@ -4,8 +4,8 @@ #include <cstdio> BITFIELD_START(MOOSE, std::uint32_t) - FIELD(IO, 4, 7) - FIELD(EL, 16, 31) +FIELD(IO, 4, 7) +FIELD(EL, 16, 31) BITFIELD_END() int main() { |