Modularity and gcc warnings fixes.
This commit is contained in:
parent
455fd51a87
commit
be9be90483
6 changed files with 23 additions and 8 deletions
|
|
@ -108,6 +108,9 @@ action_t action_for_key(uint8_t layer, keypos_t key)
|
|||
__attribute__ ((weak))
|
||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
|
||||
{
|
||||
(void)record;
|
||||
(void)id;
|
||||
(void)opt;
|
||||
return MACRO_NONE;
|
||||
}
|
||||
|
||||
|
|
@ -115,6 +118,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
|
|||
__attribute__ ((weak))
|
||||
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
|
||||
{
|
||||
(void)record;
|
||||
(void)id;
|
||||
(void)opt;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue