diff options
author | Simon Ser <contact@emersion.fr> | 2021-11-22 22:30:40 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-11-23 14:14:18 +0000 |
commit | 1d9c1bcea6a223379af63b4d779d53663eaffcf8 (patch) | |
tree | ddab71bb63061a9bb0868fdce1496b52b4fea5a5 /include/wlr | |
parent | c9ba9e82b6a829d6e6d5acc65753b3ade46cefb9 (diff) |
input-device: remove wlr_input_device.link
This field's ownership is unclear: it's in wlr_input_device, but
it's not managed by the common code, it's up to each individual
backend to use it and clean it up.
Since this is a backend implementation detail, move it to the
backend-specific structs.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_input_device.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_input_device.h b/include/wlr/types/wlr_input_device.h index 8ed9b465..cbc877df 100644 --- a/include/wlr/types/wlr_input_device.h +++ b/include/wlr/types/wlr_input_device.h @@ -53,8 +53,6 @@ struct wlr_input_device { } events; void *data; - - struct wl_list link; }; #endif |