From bd3fc34c8fbae9f47803b086ac350b78b5436b19 Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Tue, 6 Feb 2024 20:53:29 +0100 Subject: [PATCH] include: vlc_poll: fix documentation nesting Because vlc_poll.h was parsed before vlc_thread and the group name was also thread, every thread-related item was moved to the "Poll implementations" list on the doxygen output. Regression from 3f613a85f58edc1e37d56a1fe7769c9e14981258. --- include/vlc_poll.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/vlc_poll.h b/include/vlc_poll.h index 7994ff1dcb..36b22a8ade 100644 --- a/include/vlc_poll.h +++ b/include/vlc_poll.h @@ -31,7 +31,7 @@ /** * \ingroup os - * \defgroup thread Poll implementations + * \defgroup thread_poll Poll implementations * @{ * \file * Poll implementations @@ -96,4 +96,6 @@ static inline int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout) #endif +/** @} */ + #endif /* !VLC_POLL_H_ */