]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix problems with undefined inlines in debug mode
authorFred Sundvik <fsundvik@gmail.com>
Sun, 18 Jun 2017 11:39:58 +0000 (14:39 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Sun, 18 Jun 2017 18:22:22 +0000 (21:22 +0300)
tmk_core/common/action_util.c

index f76398fb92e2de9bf5b584eb6b3299cb1a13e84c..148162a5102ecae8166a9c8b4625cc392f49750e 100644 (file)
@@ -43,6 +43,10 @@ static int8_t cb_count = 0;
 //report_keyboard_t keyboard_report = {};
 report_keyboard_t *keyboard_report = &(report_keyboard_t){};
 
+extern inline void add_key(uint8_t key);
+extern inline void del_key(uint8_t key);
+extern inline void clear_keys(void);
+
 #ifndef NO_ACTION_ONESHOT
 static int8_t oneshot_mods = 0;
 static int8_t oneshot_locked_mods = 0;