diff options
author | Ryan <fauxpark@gmail.com> | 2024-04-05 14:48:21 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-05 14:48:21 +1100 |
commit | a14c03b96e75212d042621f4c68ccbecb7ee9901 (patch) | |
tree | 6a2de0f8d23d238e99760c5d00d5a90ea10f60fd /keyboards/gboards | |
parent | f8a7a6848d737b01dcb5843503bcabcdd68cdb01 (diff) |
Remove more unnecessary `quantum.h` includes (#23402)
Diffstat (limited to 'keyboards/gboards')
-rw-r--r-- | keyboards/gboards/engine/engine.h | 5 | ||||
-rw-r--r-- | keyboards/gboards/g/engine.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/keyboards/gboards/engine/engine.h b/keyboards/gboards/engine/engine.h index 005dd730b8..a28777f4f2 100644 --- a/keyboards/gboards/engine/engine.h +++ b/keyboards/gboards/engine/engine.h @@ -12,9 +12,12 @@ #pragma once -#include "quantum.h" +#include <stdint.h> +#include <stdbool.h> #include <string.h> #include <stdio.h> +#include "action.h" +#include "progmem.h" #include "config_engine.h" // Maximum values for combos diff --git a/keyboards/gboards/g/engine.h b/keyboards/gboards/g/engine.h index a78ddc96ff..2b62165c51 100644 --- a/keyboards/gboards/g/engine.h +++ b/keyboards/gboards/g/engine.h @@ -12,9 +12,12 @@ #pragma once -#include "quantum.h" +#include <stdint.h> +#include <stdbool.h> #include <string.h> #include <stdio.h> +#include "action.h" +#include "progmem.h" #include "config_engine.h" // Set defaults |