From aff68a36cdca05e129a29784314a60e9fe5b665b Mon Sep 17 00:00:00 2001 From: dogandog Date: Fri, 19 Aug 2016 10:12:39 +0800 Subject: [PATCH] Correct comments about doxygen format chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/ --- src/mempool.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mempool.c b/src/mempool.c index b6d83597b..a01e2145c 100644 --- a/src/mempool.c +++ b/src/mempool.c @@ -43,7 +43,7 @@ static void (*rt_mp_free_hook)(struct rt_mempool *mp, void *block); * @addtogroup Hook */ -/*@{*/ +/**@{*/ /** * This function will set a hook function, which will be invoked when a memory @@ -67,14 +67,14 @@ void rt_mp_free_sethook(void (*hook)(struct rt_mempool *mp, void *block)) rt_mp_free_hook = hook; } -/*@}*/ +/**@}*/ #endif /** * @addtogroup MM */ -/*@{*/ +/**@{*/ /** * This function will initialize a memory pool object, normally which is used @@ -465,7 +465,7 @@ void rt_mp_free(void *block) } RTM_EXPORT(rt_mp_free); -/*@}*/ +/**@}*/ #endif