X Tutup
Skip to content

Commit fe08abb

Browse files
committed
Improved Doxygen comments. There are no functional changes.
1 parent 1715969 commit fe08abb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

lib/mathlib.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,20 @@ class CPPCHECKLIB MathLib {
112112
static bool isNullValue(const std::string &tok);
113113
/**
114114
* Return true if given character is 0,1,2,3,4,5,6 or 7.
115-
* @param c The character to check
115+
* @param[in] c The character to check
116116
* @return true if given character is octal digit.
117117
*/
118118
static bool isOctalDigit(char c);
119-
/*
120-
* \param str character literal
119+
120+
/**
121+
* \param[in] str character literal
121122
* @return Number of internal representation of the character literal
122123
* */
123124
static MathLib::bigint characterLiteralToLongNumber(const std::string& str);
124125

125126
/**
126-
* \param iCode Code being considered
127-
* \param iPos A posision within iCode
127+
* \param[in] iCode Code being considered
128+
* \param[in] iPos A posision within iCode
128129
* \return Whether iCode[iPos] is a C++14 digit separator
129130
*/
130131
static bool isDigitSeparator(const std::string& iCode, std::string::size_type iPos);

0 commit comments

Comments
 (0)
X Tutup