From 5c4b53a1437adde49871752d8015bfc042b97c20 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Mon, 8 May 2023 10:56:03 -0700 Subject: [Bug] Realign and size check EECONFIG structures (#20541) Co-authored-by: Nick Brassel --- quantum/keycode_config.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'quantum/keycode_config.h') diff --git a/quantum/keycode_config.h b/quantum/keycode_config.h index eef048d95c..d1352c302e 100644 --- a/quantum/keycode_config.h +++ b/quantum/keycode_config.h @@ -16,6 +16,10 @@ #pragma once +#ifdef __cplusplus +# define _Static_assert static_assert +#endif + #include "eeconfig.h" #include "keycode.h" #include "action_code.h" @@ -43,4 +47,6 @@ typedef union { }; } keymap_config_t; +_Static_assert(sizeof(keymap_config_t) == sizeof(uint16_t), "Keycode (magic) EECONFIG out of spec."); + extern keymap_config_t keymap_config; -- cgit v1.2.3