Doxygen documentation: Use C++-style comments for enumeration elements

This commit is contained in:
Henry Weller
2016-05-11 23:10:42 +01:00
parent 84f6355ad0
commit cacbc688d8
10 changed files with 42 additions and 41 deletions

View File

@ -88,10 +88,10 @@ public:
//- Enumeration for handling out-of-bound values
enum boundsHandling
{
ERROR, /*!< Exit with a FatalError */
WARN, /*!< Issue warning and clamp value (default) */
CLAMP, /*!< Clamp value to the start/end value */
REPEAT /*!< Treat as a repeating list */
ERROR, //!< Exit with a FatalError
WARN, //!< Issue warning and clamp value (default)
CLAMP, //!< Clamp value to the start/end value
REPEAT //!< Treat as a repeating list
};