From: mquinson Date: Mon, 6 Jun 2005 22:01:54 +0000 (+0000) Subject: Document another public value, don't document in doxygen the private ones (ie, mask... X-Git-Tag: v3.3~3998 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4802c5aaf0e767696542daafbcf6976ad4a8c0cc Document another public value, don't document in doxygen the private ones (ie, mask them) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1357 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/log.h b/include/xbt/log.h index 3c7e846e77..207016bedf 100644 --- a/include/xbt/log.h +++ b/include/xbt/log.h @@ -25,8 +25,8 @@ * The different existing priorities. */ typedef enum { - xbt_log_priority_none = 0, /**< used internally (don't poke with) */ - xbt_log_priority_trace = 1, + xbt_log_priority_none = 0, /* used internally (don't poke with) */ + xbt_log_priority_trace = 1, /**< enter and return of some functions */ xbt_log_priority_debug = 2, /**< crufty output */ xbt_log_priority_verbose = 3, /**< verbose output for the user wanting more */ xbt_log_priority_info = 4, /**< output about the regular functionning */ @@ -36,7 +36,7 @@ typedef enum { xbt_log_priority_infinite = 8, /**< value for XBT_LOG_STATIC_THRESHOLD to not log */ - xbt_log_priority_uninitialized = -1 /**< used internally (don't poke with) */ + xbt_log_priority_uninitialized = -1 /* used internally (don't poke with) */ } e_xbt_log_priority_t;