You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After pulling from master I get an implicit declaration of function error:
Compiling: quantum/command.c quantum/command.c: In function 'command_console':
quantum/command.c:561:13: error: implicit declaration of function 'mousekey_console' [-Werror=implicit-function-declaration]
561 | mousekey_console(KC_SLASH /* ? */);
| ^~~~~~~~~~~~~~~~
quantum/command.c: At top level:
quantum/command.c:629:6: error: conflicting types for 'mousekey_console'; have '_Bool(uint8_t)' {aka '_Bool(unsigned char)'}
629 | bool mousekey_console(uint8_t code) {
| ^~~~~~~~~~~~~~~~
quantum/command.c:561:13: note: previous implicit declaration of 'mousekey_console' with type 'int()'
561 | mousekey_console(KC_SLASH /* ? */);
| ^~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
[ERRORS]
|
|
|
make[1]: *** [tmk_core/rules.mk:443: .build/obj_crkbd_rev1_mcp292/quantum/command.o] Error 1
Make finished with errors
make: *** [Makefile:539: crkbd/rev1:mcp292:flash] Error 1
Git blame links it to this commit/PR, but I don't find it in my local logs nor in the github commits page for master. This makes sense because the PR was merged into develop. So I now search the master logs for "develop" to find the merge, and find nothing.
If found I would revert the commit and test to verify it is the cause of error.
System Information
Keyboard: crkbd
Operating system: Arch Linux
AVR GCC version: 11.2.0
ARM GCC version: 11.2.0
QMK Firmware version: 0.14.16
The text was updated successfully, but these errors were encountered:
Describe the bug
After pulling from master I get an
implicit declaration of function
error:Git blame links it to this commit/PR, but I don't find it in my local logs nor in the github commits page for master. This makes sense because the PR was merged into develop. So I now search the master logs for "develop" to find the merge, and find nothing.
If found I would revert the commit and test to verify it is the cause of error.
System Information
The text was updated successfully, but these errors were encountered: