Created
November 29, 2016 04:07
-
-
Save artur-kink/fcbf65637d5a9427098d96683e6985f2 to your computer and use it in GitHub Desktop.
Doxygen missing @param warnings bug test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file CPosition.h file | |
*/ | |
/** | |
* @brief nonclassfunc | |
*/ | |
void nonclassfunc(int x, int y); | |
/** | |
* @brief nonclassfunc | |
* @param x xparam | |
*/ | |
void nonclassfunc2(int x, int y); | |
/** | |
* nonclassfunc | |
*/ | |
void nonclassfunc3(int x, int y); | |
/** | |
* @brief nonclassfunc | |
*/ | |
int nonclassfunc4(int x, int y); | |
/** | |
* @brief nonclassfunc | |
* @return returns 0 | |
*/ | |
int nonclassfunc5(int x, int y); | |
class CPosition{ | |
public: | |
/** | |
* @brief Constructor 1 | |
*/ | |
CPosition(int x); | |
/** | |
* Constructor 2 | |
*/ | |
CPosition(CPosition &a); | |
/** | |
* @brief Constructor 2 | |
* @param x first param | |
*/ | |
CPosition(int x, int y); | |
/** | |
* @brief This is a testfunc | |
* @param abc | |
*/ | |
void testfunc(int abc, int xyz){ | |
} | |
/** | |
* @brief This is a testfunc2 | |
*/ | |
void testfunc2(int abc, int xyz){ | |
} | |
/** | |
* This is a testfunc3 | |
*/ | |
void testfunc3(int abc, int xyz); | |
/** | |
* This is a testfunc4 | |
*/ | |
int testfunc4(int abc, int xyz); | |
/** | |
* @brief This is a testfunc5 | |
*/ | |
int testfunc5(int abc, int xyz); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment