Small doxygen fixes

This commit is contained in:
Alexander Mai 2014-11-16 19:40:04 +01:00
parent ea94b2748f
commit 45ff012b2c
2 changed files with 2 additions and 1 deletions

View File

@ -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&lt;T&gt;|u16string|u32string */
fIsIntType = (1 << 12), /** @brief Integral type */
fIsFloatType = (1 << 13) /** @brief Floating point type */
};

View File

@ -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