mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-10 22:25:59 +01:00
initialize arrays
This commit is contained in:
parent
8ae38c1e1e
commit
cdd037ec64
1 changed files with 2 additions and 2 deletions
|
@ -82,8 +82,8 @@ class IKeyboard : public IHID {
|
|||
uint32_t depressed = 0, latched = 0, locked = 0, group = 0;
|
||||
} modifiersState;
|
||||
|
||||
std::array<xkb_led_index_t, 3> ledIndexes;
|
||||
std::array<xkb_mod_index_t, 8> modIndexes;
|
||||
std::array<xkb_led_index_t, 3> ledIndexes = {0};
|
||||
std::array<xkb_mod_index_t, 8> modIndexes = {0};
|
||||
uint32_t leds = 0;
|
||||
|
||||
std::string hlName = "";
|
||||
|
|
Loading…
Reference in a new issue