mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-29 05:40:16 -04:00
server: Add doxygen comment for wl_client_for_each
Commit 596024f728 includes a doc comment
with a link to the wl_client_for_each macro, causing an error when generating
documentation.
Add a doc comment to wl_client_for_each, enabling the hyperlink and removing
the error.
Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
This commit is contained in:
parent
450f06e21a
commit
1c3213adf0
1 changed files with 1 additions and 0 deletions
|
|
@ -180,6 +180,7 @@ wl_client_get_link(struct wl_client *client);
|
|||
struct wl_client *
|
||||
wl_client_from_link(struct wl_list *link);
|
||||
|
||||
/** Iterate over a list of clients. */
|
||||
#define wl_client_for_each(client, list) \
|
||||
for (client = wl_client_from_link((list)->next); \
|
||||
wl_client_get_link(client) != (list); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue