update doxygen comments

This commit is contained in:
Daniel Marjamäki 2018-04-25 10:14:57 +02:00
parent 4b104c4576
commit 9aeb2aaa17
1 changed files with 18 additions and 18 deletions

View File

@ -653,24 +653,24 @@ private:
class CPPCHECKLIB Function { class CPPCHECKLIB Function {
/** @brief flags mask used to access specific bit. */ /** @brief flags mask used to access specific bit. */
enum { enum {
fHasBody = (1 << 0), /** @brief has implementation */ fHasBody = (1 << 0), ///< @brief has implementation
fIsInline = (1 << 1), /** @brief implementation in class definition */ fIsInline = (1 << 1), ///< @brief implementation in class definition
fIsConst = (1 << 2), /** @brief is const */ fIsConst = (1 << 2), ///< @brief is const
fIsVirtual = (1 << 3), /** @brief is virtual */ fIsVirtual = (1 << 3), ///< @brief is virtual
fIsPure = (1 << 4), /** @brief is pure virtual */ fIsPure = (1 << 4), ///< @brief is pure virtual
fIsStatic = (1 << 5), /** @brief is static */ fIsStatic = (1 << 5), ///< @brief is static
fIsStaticLocal = (1 << 6), /** @brief is static local */ fIsStaticLocal = (1 << 6), ///< @brief is static local
fIsExtern = (1 << 7), /** @brief is extern */ fIsExtern = (1 << 7), ///< @brief is extern
fIsFriend = (1 << 8), /** @brief is friend */ fIsFriend = (1 << 8), ///< @brief is friend
fIsExplicit = (1 << 9), /** @brief is explicit */ fIsExplicit = (1 << 9), ///< @brief is explicit
fIsDefault = (1 << 10), /** @brief is default */ fIsDefault = (1 << 10), ///< @brief is default
fIsDelete = (1 << 11), /** @brief is delete */ fIsDelete = (1 << 11), ///< @brief is delete
fIsNoExcept = (1 << 12), /** @brief is noexcept */ fIsNoExcept = (1 << 12), ///< @brief is noexcept
fIsThrow = (1 << 13), /** @brief is throw */ fIsThrow = (1 << 13), ///< @brief is throw
fIsOperator = (1 << 14), /** @brief is operator */ fIsOperator = (1 << 14), ///< @brief is operator
fHasLvalRefQual = (1 << 15), /** @brief has & lvalue ref-qualifier */ fHasLvalRefQual = (1 << 15), ///< @brief has & lvalue ref-qualifier
fHasRvalRefQual = (1 << 16), /** @brief has && rvalue ref-qualifier */ fHasRvalRefQual = (1 << 16), ///< @brief has && rvalue ref-qualifier
fIsVariadic = (1 << 17) /** @brief is variadic */ fIsVariadic = (1 << 17) ///< @brief is variadic
}; };
/** /**