summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Nader <adrien@notk.org>2014-10-20 13:40:00 +0200
committerCedric BAIL <cedric@osg.samsung.com>2014-10-20 18:32:28 +0200
commit10c4309fa7f366a3a95688c41e1b4d9778c01939 (patch)
tree52490de8ec29cc0570597f18b112eb372ba8dd02
parentde5e028d7dfa7e4b03d958ed0b6213f316c22107 (diff)
downloadefl-10c4309fa7f366a3a95688c41e1b4d9778c01939.tar.gz
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.
-rw-r--r--src/lib/eina/eina_inline_mempool.x10
1 files changed, 0 insertions, 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 <string.h>
-/**
- * @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