Small doxygen fixes
This commit is contained in:
parent
ea94b2748f
commit
45ff012b2c
|
@ -137,7 +137,7 @@ class CPPCHECKLIB Variable {
|
|||
fIsRValueRef = (1 << 8), /** @brief rvalue reference variable */
|
||||
fHasDefault = (1 << 9), /** @brief function argument with default value */
|
||||
fIsStlType = (1 << 10), /** @brief STL type ('std::') */
|
||||
fIsStlString = (1 << 11), /** @brief std::string|wstring|basic_string<T>|u16string|u32string */
|
||||
fIsStlString = (1 << 11), /** @brief std::string|wstring|basic_string<T>|u16string|u32string */
|
||||
fIsIntType = (1 << 12), /** @brief Integral type */
|
||||
fIsFloatType = (1 << 13) /** @brief Floating point type */
|
||||
};
|
||||
|
|
|
@ -388,6 +388,7 @@ public:
|
|||
*
|
||||
* @param needle Current token
|
||||
* @param haystack e.g. "one|two" or "|one|two"
|
||||
* @param varid optional varid of token
|
||||
* @return 1 if needle is found from the haystack
|
||||
* 0 if needle was empty string
|
||||
* -1 if needle was not found
|
||||
|
|
Loading…
Reference in New Issue