From: Yong Bakos Date: Thu, 11 Aug 2016 19:13:37 +0000 (-0700) Subject: server: Add doxygen comment for wl_client_for_each X-Git-Tag: 1.11.91~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c3213adf02ed27e37401929956d9bf79c23dce7;p=platform%2Fupstream%2Fwayland.git server: Add doxygen comment for wl_client_for_each Commit 596024f728b0a1292ee69a80dd72a85167870936 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 Reviewed-by: Bryce Harrington --- diff --git a/src/wayland-server-core.h b/src/wayland-server-core.h index 21465af..2c215e4 100644 --- a/src/wayland-server-core.h +++ b/src/wayland-server-core.h @@ -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); \