diff options
author | Drashna Jaelre <drashna@live.com> | 2021-12-06 11:36:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 11:36:30 -0800 |
commit | 5f7c0e3097359bc867304640b6c7b7df3ad0ac7f (patch) | |
tree | d0885b2281211c54a5baab985906f1d6324c19f6 /quantum | |
parent | ce1ee47ef533b257e213e38e86c370c6e73693e2 (diff) |
Add missing define for unicode common (#15416)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 6927884e2f..5d3a665887 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -109,6 +109,10 @@ extern layer_state_t layer_state; # include "process_unicodemap.h" #endif +#ifdef UNICODE_COMMON_ENABLE +# include "process_unicode_common.h" +#endif + #ifdef KEY_OVERRIDE_ENABLE # include "process_key_override.h" #endif |