diff options
author | Adam YH Lee <adam.yh.lee@gmail.com> | 2017-04-16 15:20:31 -0700 |
---|---|---|
committer | Adam YH Lee <adam.yh.lee@gmail.com> | 2017-04-16 15:20:31 -0700 |
commit | 9d4050586d24cdfbe5257c094fbb6c1be51f176f (patch) | |
tree | 8cf123260835331d75d02c5b15d0fb39ceba3256 /quantum/keymap_common.c | |
parent | 7e930626eb5f69d6a4de0594c6f5930334d801f8 (diff) | |
parent | b5e8327755100252060afbd54e16322522b4f1e9 (diff) |
Merge branch 'master' into layouts/adam-lee
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r-- | quantum/keymap_common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c index 6cf4f031ff..9dafc8b516 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c @@ -179,5 +179,12 @@ uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key) __attribute__ ((weak)) uint16_t keymap_function_id_to_action( uint16_t function_id ) { + // The compiler sees the empty (weak) fn_actions and generates a warning + // This function should not be called in that case, so the warning is too strict + // If this function is called however, the keymap should have overridden fn_actions, and then the compile + // is comparing against the wrong array + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Warray-bounds" return pgm_read_word(&fn_actions[function_id]); + #pragma GCC diagnostic pop } |