Fix some doxygen warnings
This commit is contained in:
parent
1abc9008d8
commit
f947b3b025
|
@ -116,7 +116,7 @@ static bool simplifyPathWithVariables(std::string &s, std::map<std::string, std:
|
||||||
if (it1 == variables.end()) {
|
if (it1 == variables.end()) {
|
||||||
const char *envValue = std::getenv(var.c_str());
|
const char *envValue = std::getenv(var.c_str());
|
||||||
if (!envValue) {
|
if (!envValue) {
|
||||||
//! @TODO generate a debug/info message about undefined variable
|
//! \todo generate a debug/info message about undefined variable
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
variables[var] = std::string(envValue);
|
variables[var] = std::string(envValue);
|
||||||
|
|
|
@ -125,9 +125,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief Don't show this error. File and/or line are optional. In which case
|
* @brief Don't show this error. File and/or line are optional. In which case
|
||||||
* the errorId alone is used for filtering.
|
* the errorId alone is used for filtering.
|
||||||
* @param errorId the id for the error, e.g. "arrayIndexOutOfBounds"
|
* @param suppression suppression details
|
||||||
* @param file File name with the path, e.g. "src/main.cpp"
|
|
||||||
* @param line number, e.g. "123"
|
|
||||||
* @return error message. empty upon success
|
* @return error message. empty upon success
|
||||||
*/
|
*/
|
||||||
std::string addSuppression(const Suppression &suppression);
|
std::string addSuppression(const Suppression &suppression);
|
||||||
|
|
|
@ -884,7 +884,7 @@ private:
|
||||||
/** variable count */
|
/** variable count */
|
||||||
unsigned int _varId;
|
unsigned int _varId;
|
||||||
|
|
||||||
/** unnamed count "Unnamed0", "Unnamed1", "Unnamed2", .. */
|
/** unnamed count "Unnamed0", "Unnamed1", "Unnamed2", ... */
|
||||||
unsigned int _unnamedCount;
|
unsigned int _unnamedCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue