summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong Bakos <ybakos@humanoriented.com>2016-05-12 15:52:38 -0500
committerBryce Harrington <bryce@osg.samsung.com>2016-06-01 17:34:21 -0700
commitd29b9233058004eef321f847a588b94eb86c1d36 (patch)
treed0b73e919c10f36fa01e439338c4b5e8589f54cd
parent3e58aa1e0621f9183188bc79c51e0a3eca932465 (diff)
doc: Unpublish wl_log* and wl_abort
The public documentation included descriptions of wl_log_stderr_handler, wl_log_func_t wl_log_handler, wl_log and wl_abort. These are not accessible via the public API. Move the doxygen \endcond command to wrap these definitions, removing them from publication. Signed-off-by: Yong Bakos <ybakos@humanoriented.com> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
-rw-r--r--src/wayland-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wayland-util.c b/src/wayland-util.c
index 5bfb7e1..407d1f0 100644
--- a/src/wayland-util.c
+++ b/src/wayland-util.c
@@ -379,8 +379,6 @@ wl_map_for_each(struct wl_map *map, wl_iterator_func_t func, void *data)
for_each_helper(&map->server_entries, func, data);
}
-/** \endcond */
-
static void
wl_log_stderr_handler(const char *fmt, va_list arg)
{
@@ -410,3 +408,5 @@ wl_abort(const char *fmt, ...)
abort();
}
+
+/** \endcond */