Cure some doxygen warnings
This commit is contained in:
parent
a65fabebce
commit
b90b751b54
|
@ -56,6 +56,7 @@ bool isSameExpression(bool cpp, const Token *tok1, const Token *tok2, const std:
|
||||||
* @param cpp c++ file
|
* @param cpp c++ file
|
||||||
* @param cond1 condition1
|
* @param cond1 condition1
|
||||||
* @param cond2 condition2
|
* @param cond2 condition2
|
||||||
|
* @param constFunctions constFunctions
|
||||||
*/
|
*/
|
||||||
bool isOppositeCond(bool isNot, bool cpp, const Token * const cond1, const Token * const cond2, const std::set<std::string> &constFunctions);
|
bool isOppositeCond(bool isNot, bool cpp, const Token * const cond1, const Token * const cond2, const std::set<std::string> &constFunctions);
|
||||||
|
|
||||||
|
|
|
@ -1163,6 +1163,7 @@ static Token *simplifyVarMapExpandValue(Token *tok, const std::map<std::string,
|
||||||
/**
|
/**
|
||||||
* Simplifies the variable map. For example if the map contains A=>B, B=>1, then A=>B is simplified to A=>1.
|
* Simplifies the variable map. For example if the map contains A=>B, B=>1, then A=>B is simplified to A=>1.
|
||||||
* @param [in,out] variables - a map of variable name to variable value. This map will be modified.
|
* @param [in,out] variables - a map of variable name to variable value. This map will be modified.
|
||||||
|
* @param [in] settings Current settings being used
|
||||||
*/
|
*/
|
||||||
static void simplifyVarMap(std::map<std::string, std::string> &variables, const Settings& settings)
|
static void simplifyVarMap(std::map<std::string, std::string> &variables, const Settings& settings)
|
||||||
{
|
{
|
||||||
|
@ -2581,8 +2582,9 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief Constructor for PreprocessorMacro. This is the "setter"
|
* @brief Constructor for PreprocessorMacro. This is the "setter"
|
||||||
* for this class - everything is setup here.
|
* for this class - everything is setup here.
|
||||||
* @param macro The code after define, until end of line,
|
* @param [in] macro The code after define, until end of line,
|
||||||
* e.g. "A(x) foo(x);"
|
* e.g. "A(x) foo(x);"
|
||||||
|
* @param [in] settings Current settings being used
|
||||||
*/
|
*/
|
||||||
PreprocessorMacro(const std::string ¯o, const Settings* settings)
|
PreprocessorMacro(const std::string ¯o, const Settings* settings)
|
||||||
: tokenlist(settings), _macro(macro) {
|
: tokenlist(settings), _macro(macro) {
|
||||||
|
|
|
@ -52,7 +52,6 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \param[in] tokens token list
|
* \param[in] tokens token list
|
||||||
* \param[out] errorToken which identifies the syntax error if any. Might be NULL anyway
|
|
||||||
* @return false if there are no syntax errors or true
|
* @return false if there are no syntax errors or true
|
||||||
*/
|
*/
|
||||||
static void checkComplicatedSyntaxErrorsInTemplates(const Token *tokens);
|
static void checkComplicatedSyntaxErrorsInTemplates(const Token *tokens);
|
||||||
|
|
Loading…
Reference in New Issue