Merge branch 'array-const' into 'main'

WIP: make wl_array arguments const

See merge request wayland/wayland!107
This commit is contained in:
Simon Ser 2024-03-04 23:36:07 +00:00
commit c30a783078
3 changed files with 3 additions and 3 deletions

View file

@ -681,7 +681,7 @@ union wl_argument {
const char *s; /**< `string` */
struct wl_object *o; /**< `object` */
uint32_t n; /**< `new_id` */
struct wl_array *a; /**< `array` */
const struct wl_array *a; /**< `array` */
int32_t h; /**< `fd` */
};