Fix doxygen comments

This commit is contained in:
Alexander Mai 2017-08-21 21:13:01 +02:00
parent 468d4923e4
commit 0cae823c5d
3 changed files with 5 additions and 5 deletions

View File

@ -129,7 +129,7 @@ protected:
* Helper function to supply settings. This can be used for testing. * Helper function to supply settings. This can be used for testing.
* @param settings Reference to an Settings instance * @param settings Reference to an Settings instance
*/ */
void setSettings(const Settings &); void setSettings(const Settings &settings);
private: private:

View File

@ -233,7 +233,7 @@ private:
/** /**
* @brief Analyze the project. * @brief Analyze the project.
* @param project Pointer to the project to analyze. * @param projectFile Pointer to the project to analyze.
*/ */
void analyzeProject(const ProjectFile *projectFile); void analyzeProject(const ProjectFile *projectFile);

View File

@ -158,19 +158,19 @@ private:
/** /**
* @brief Check raw tokens * @brief Check raw tokens
* @param tokenizer * @param tokenizer tokenizer instance
*/ */
void checkRawTokens(const Tokenizer &tokenizer); void checkRawTokens(const Tokenizer &tokenizer);
/** /**
* @brief Check normal tokens * @brief Check normal tokens
* @param tokenizer * @param tokenizer tokenizer instance
*/ */
void checkNormalTokens(const Tokenizer &tokenizer); void checkNormalTokens(const Tokenizer &tokenizer);
/** /**
* @brief Check simplified tokens * @brief Check simplified tokens
* @param tokenizer * @param tokenizer tokenizer instance
*/ */
void checkSimplifiedTokens(const Tokenizer &tokenizer); void checkSimplifiedTokens(const Tokenizer &tokenizer);