pipewire/spa/include
Barnabás Pőcze 84b9644ee3 spa: utils: defs: fix SPA_FOR_EACH_ELEMENT usage example
To iterate over an array of `T`, the iterator must be `(const) T *`,
so that the types are compatible when `T[]` decays into `T *`.

In the example when `struct foo *[]` decays, it becomes `struct foo **`,
which is not compatible with the the type of iterator, `struct foo *`.

Fix that by changing the type of the array to `struct foo[]`.
2021-06-28 15:07:02 +02:00
..
spa spa: utils: defs: fix SPA_FOR_EACH_ELEMENT usage example 2021-06-28 15:07:02 +02:00
meson.build doc: add spa to doxygen output 2021-05-26 07:44:55 +00:00