]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Disable array bounds warning in keymap_function_id_to_action
authorFred Sundvik <fsundvik@gmail.com>
Sun, 9 Apr 2017 18:00:42 +0000 (21:00 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Thu, 13 Apr 2017 13:00:29 +0000 (16:00 +0300)
quantum/keymap_common.c

index 6cf4f031fffd450eb0e9e73aee7e18fbe95e50ef..9dafc8b5165ff37c6d244c3ce872f6c03cf387d5 100644 (file)
@@ -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
 }