diff options
author | Mark de Wever <koraq@xs4all.nl> | 2019-08-24 17:28:09 (GMT) |
---|---|---|
committer | Mark de Wever <koraq@xs4all.nl> | 2019-08-24 17:28:09 (GMT) |
commit | b30195e3060dba3f39b136dc5663fe9f07e6386b (patch) | |
tree | 7ca283de9cbe330a6e153dc042739c2f12a7ee7f | |
parent | 5213707f485360bd9145beebe2fab250ca133a02 (diff) | |
download | Doxygen-b30195e3060dba3f39b136dc5663fe9f07e6386b.zip Doxygen-b30195e3060dba3f39b136dc5663fe9f07e6386b.tar.gz Doxygen-b30195e3060dba3f39b136dc5663fe9f07e6386b.tar.bz2 |
Use the proper trailing comment.
This was found while testing with Clang's -Wdocumentation
-Wdocumentation-pedantic options.
-rw-r--r-- | src/configimpl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/configimpl.h b/src/configimpl.h index 55e056e..6b85d8a 100644 --- a/src/configimpl.h +++ b/src/configimpl.h @@ -37,14 +37,14 @@ class ConfigOption /*! The type of option */ enum OptionType { - O_Info, //<! A section header - O_List, //<! A list of items - O_Enum, //<! A fixed set of items - O_String, //<! A single item - O_Int, //<! An integer value - O_Bool, //<! A boolean value - O_Obsolete, //<! An obsolete option - O_Disabled //<! Disabled compile time option + O_Info, //!< A section header + O_List, //!< A list of items + O_Enum, //!< A fixed set of items + O_String, //!< A single item + O_Int, //!< An integer value + O_Bool, //!< A boolean value + O_Obsolete, //!< An obsolete option + O_Disabled //!< Disabled compile time option }; enum { |