diff options
author | skullY <skullydazed@gmail.com> | 2019-07-12 11:22:39 -0700 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-09-17 11:39:43 +0900 |
commit | 7ee98d5265e0120028407f2ef077e75f4930293a (patch) | |
tree | c73bcf8363a55a648fe2be410051777065b028f3 | |
parent | 338c36dbaef8f5ff83c7c5dfa6922d61d485c03e (diff) |
Have clang ignore the code in bootloader_size.c
-rw-r--r-- | tmk_core/common/avr/bootloader_size.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/common/avr/bootloader_size.c b/tmk_core/common/avr/bootloader_size.c index 0d8d534f84..a029f9321f 100644 --- a/tmk_core/common/avr/bootloader_size.c +++ b/tmk_core/common/avr/bootloader_size.c @@ -16,5 +16,6 @@ #include <avr/io.h> #include <avr/boot.h> +// clang-format off // this is not valid C - it's for computing the size available on the chip -AVR_SIZE: FLASHEND + 1 - BOOTLOADER_SIZE
\ No newline at end of file +AVR_SIZE: FLASHEND + 1 - BOOTLOADER_SIZE |