From 10c4309fa7f366a3a95688c41e1b4d9778c01939 Mon Sep 17 00:00:00 2001 From: Adrien Nader Date: Mon, 20 Oct 2014 13:40:00 +0200 Subject: [PATCH] eina: remove @addtogroup in eina_inline_mempool.x: the .h already has it. It looks like doxygen doesn't appreciate having a group inside a group of the same name and simply ignores any documentation coming from the parent one. Since the .x is included from the .h, it is always already inside the group so simply remove the directive from the .x. This fixes the documentation for all the functions which are declared and documented in the .h and implemented in the .x. --- src/lib/eina/eina_inline_mempool.x | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/lib/eina/eina_inline_mempool.x b/src/lib/eina/eina_inline_mempool.x index 032ce06d81..c33af06971 100644 --- a/src/lib/eina/eina_inline_mempool.x +++ b/src/lib/eina/eina_inline_mempool.x @@ -21,12 +21,6 @@ #include -/** - * @addtogroup Eina_Memory_Pool_Group Memory Pool - * - * @{ - */ - /* Memory Pool */ typedef struct _Eina_Mempool_Backend_ABI1 Eina_Mempool_Backend_ABI1; typedef struct _Eina_Mempool_Backend_ABI2 Eina_Mempool_Backend_ABI2; @@ -128,8 +122,4 @@ eina_mempool_alignof(unsigned int size) return ((size / align) + (size % align ? 1 : 0)) * align; } -/** - * @} - */ - #endif