diff options
| author | Yong Bakos <ybakos@humanoriented.com> | 2016-08-11 12:13:37 -0700 |
|---|---|---|
| committer | Bryce Harrington <bryce@osg.samsung.com> | 2016-08-12 12:43:37 -0700 |
| commit | 1c3213adf02ed27e37401929956d9bf79c23dce7 (patch) | |
| tree | 678684d26c844b3de034c62d79269b2edd262f46 /src/wayland-server-core.h | |
| parent | Add API to install protocol loggers on the server wl_display (diff) | |
| download | wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar.gz wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar.bz2 wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar.lz wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar.xz wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.tar.zst wayland-1c3213adf02ed27e37401929956d9bf79c23dce7.zip | |
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 <ybakos@humanoriented.com>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Diffstat (limited to 'src/wayland-server-core.h')
| -rw-r--r-- | src/wayland-server-core.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); \ |
