doxygen: updated comments for ErrorLogger and Severity
This commit is contained in:
parent
30d3418b11
commit
c5e0104ab8
|
@ -30,7 +30,7 @@ class Tokenizer;
|
|||
/// @{
|
||||
|
||||
/**
|
||||
* This is an interface, which the class responsible of error logging
|
||||
* @brief This is an interface, which the class responsible of error logging
|
||||
* should implement.
|
||||
*/
|
||||
class ErrorLogger
|
||||
|
@ -352,7 +352,7 @@ private:
|
|||
void _writemsg(const Tokenizer *tokenizer, const std::list<const Token *> &callstack, const char severity[], const std::string &msg, const std::string &id);
|
||||
};
|
||||
|
||||
/** enum class for severity */
|
||||
/** @brief enum class for severity. Used when reporting errors. */
|
||||
class Severity
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
/// @addtogroup Core
|
||||
/// @{
|
||||
|
||||
/** @brief simple math functions that uses operands stored in std::string. useful when performing math on tokens. */
|
||||
|
||||
class MathLib
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue