From: alegrand Date: Fri, 1 Jul 2005 05:51:32 +0000 (+0000) Subject: help doxygen to stop complaining about documentation for unknown define X-Git-Tag: v3.3~3849 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/525f6a48d196fece2e4fbb032c604faccc1b0146?hp=9f47311e85fbd9e2156967acd248aceb351e1c28 help doxygen to stop complaining about documentation for unknown define git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1506 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/dict.h b/include/xbt/dict.h index 00b5c80dba..38aab198f1 100644 --- a/include/xbt/dict.h +++ b/include/xbt/dict.h @@ -104,7 +104,7 @@ BEGIN_DECL() * * @{ */ - /** \brief Cursor on dictionnaries (opaque type) */ + /** @brief Cursor on dictionnaries (opaque type) */ typedef struct xbt_dict_cursor_ *xbt_dict_cursor_t; xbt_dict_cursor_t xbt_dict_cursor_new(const xbt_dict_t head); void xbt_dict_cursor_free(xbt_dict_cursor_t *cursor); @@ -123,8 +123,8 @@ BEGIN_DECL() int xbt_dict_cursor_get_or_free (xbt_dict_cursor_t *cursor, char **key, void **data); - /** \brief toto - \hideinitializer */ + /** @def xbt_dict_foreach + @hideinitializer */ # define xbt_dict_foreach(dict,cursor,key,data) \ for (cursor=NULL, xbt_dict_cursor_first((dict),&(cursor)) ; \ xbt_dict_cursor_get_or_free(&(cursor),&(key),(void**)(&data));\