diff options
| author | Fred Sundvik <fsundvik@gmail.com> | 2017-06-18 14:39:58 +0300 |
|---|---|---|
| committer | Fred Sundvik <fsundvik@gmail.com> | 2017-06-18 21:22:22 +0300 |
| commit | 6a76192fa4bb8c5757c32cf3c65c4e7e7f6c7c3e (patch) | |
| tree | b7b0c1f7450a88ea4f6fef356dd0a50e83175b09 | |
| parent | bd1729d5be376fecae67ab5ddc92eab82416a5c1 (diff) | |
| download | qmk_firmware-6a76192fa4bb8c5757c32cf3c65c4e7e7f6c7c3e.tar.gz qmk_firmware-6a76192fa4bb8c5757c32cf3c65c4e7e7f6c7c3e.zip | |
Fix problems with undefined inlines in debug mode
| -rw-r--r-- | tmk_core/common/action_util.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common/action_util.c b/tmk_core/common/action_util.c index f76398fb9..148162a51 100644 --- a/tmk_core/common/action_util.c +++ b/tmk_core/common/action_util.c | |||
| @@ -43,6 +43,10 @@ static int8_t cb_count = 0; | |||
| 43 | //report_keyboard_t keyboard_report = {}; | 43 | //report_keyboard_t keyboard_report = {}; |
| 44 | report_keyboard_t *keyboard_report = &(report_keyboard_t){}; | 44 | report_keyboard_t *keyboard_report = &(report_keyboard_t){}; |
| 45 | 45 | ||
| 46 | extern inline void add_key(uint8_t key); | ||
| 47 | extern inline void del_key(uint8_t key); | ||
| 48 | extern inline void clear_keys(void); | ||
| 49 | |||
| 46 | #ifndef NO_ACTION_ONESHOT | 50 | #ifndef NO_ACTION_ONESHOT |
| 47 | static int8_t oneshot_mods = 0; | 51 | static int8_t oneshot_mods = 0; |
| 48 | static int8_t oneshot_locked_mods = 0; | 52 | static int8_t oneshot_locked_mods = 0; |
