| 2671 | } |
| 2672 | |
| 2673 | bool Token::Impl::getCppcheckAttribute(CppcheckAttributesType attrType, MathLib::bigint &value) const |
| 2674 | { |
| 2675 | const CppcheckAttributes *attr = mCppcheckAttributes; |
| 2676 | while (attr && attr->type != attrType) |
| 2677 | attr = attr->next; |
| 2678 | if (attr) |
| 2679 | value = attr->value; |
| 2680 | return attr != nullptr; |
| 2681 | } |
| 2682 | |
| 2683 | Token* findTypeEnd(Token* tok) |
| 2684 | { |
no outgoing calls
no test coverage detected