[asterisk-commits] twilson: branch twilson/config_work r368180 - /team/twilson/config_work/inclu...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jun 1 11:01:29 CDT 2012


Author: twilson
Date: Fri Jun  1 11:01:25 2012
New Revision: 368180

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=368180
Log:
Add the missing "!" for some doxygen comments

Modified:
    team/twilson/config_work/include/asterisk/config_options.h

Modified: team/twilson/config_work/include/asterisk/config_options.h
URL: http://svnview.digium.com/svn/asterisk/team/twilson/config_work/include/asterisk/config_options.h?view=diff&rev=368180&r1=368179&r2=368180
==============================================================================
--- team/twilson/config_work/include/asterisk/config_options.h (original)
+++ team/twilson/config_work/include/asterisk/config_options.h Fri Jun  1 11:01:25 2012
@@ -54,7 +54,7 @@
 	ACO_REGEX,
 };
 
-/* Callback functions for option parsing via aco_process_config() */
+/*! Callback functions for option parsing via aco_process_config() */
 
 /*! \brief Allocate a configurable ao2 object
  * \param category The config category the object is being generated for
@@ -304,7 +304,7 @@
 int __aco_option_register(struct aco_info *info, const char *name, enum aco_matchtype match_type, struct aco_type **types,
 	const char *default_val, enum aco_option_type type, aco_option_handler handler, unsigned int flags, size_t argc, ...);
 
-/* \brief Register a config option
+/*! \brief Register a config option
  * \param info A pointer to the aco_info struct
  * \param name The name of the option
  * \param types An array of valid option types for matching categories to the correct struct type
@@ -317,7 +317,7 @@
 #define aco_option_register(info, name, matchtype, types, default_val, opt_type, flags, ...) \
 	__aco_option_register(info, name, matchtype, types, default_val, opt_type, NULL, flags, VA_NARGS(__VA_ARGS__), __VA_ARGS__);
 
-/* \brief Register a config option
+/*! \brief Register a config option
  * \param info A pointer to the aco_info struct
  * \param name The name of the option
  * \param types An array of valid option types for matching categories to the correct struct type
@@ -375,7 +375,7 @@
  */
 #define ARGMAP(func, func_arg, x, ...) ARGMAP_(VA_NARGS(x, ##__VA_ARGS__), func, func_arg, x, __VA_ARGS__)
 
-/* \note This is sneaky. On the very first argument, we set "in" to N, the number of arguments, so
+/*! \note This is sneaky. On the very first argument, we set "in" to N, the number of arguments, so
  * that the accumulation both works properly for the first argument (since "in" can't be empty) and
  * we get the number of arguments in our varargs as a bonus */
 #define ARGMAP_(N, func, func_arg, x, ...) PASTE(ARGMAP_, N)(func, func_arg, N, x, __VA_ARGS__)




More information about the asterisk-commits mailing list