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.
This commit is contained in:
Adrien Nader 2014-10-20 13:40:00 +02:00 committed by Cedric BAIL
parent de5e028d7d
commit 10c4309fa7
1 changed files with 0 additions and 10 deletions

View File

@ -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