From 45ff012b2cdf7f20b191277d47b593a83fd20b75 Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Sun, 16 Nov 2014 19:40:04 +0100 Subject: [PATCH] Small doxygen fixes --- lib/symboldatabase.h | 2 +- lib/token.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/symboldatabase.h b/lib/symboldatabase.h index d1f9eaa41..c9b1fcfd1 100644 --- a/lib/symboldatabase.h +++ b/lib/symboldatabase.h @@ -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|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 */ }; diff --git a/lib/token.h b/lib/token.h index 3f2fa0b9e..010024267 100644 --- a/lib/token.h +++ b/lib/token.h @@ -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