| 1717 | } |
| 1718 | |
| 1719 | bool CheckIOImpl::ArgumentInfo::isKnownType() const |
| 1720 | { |
| 1721 | if (variableInfo) |
| 1722 | return (typeToken->isStandardType() || typeToken->next()->isStandardType() || isComplexType()); |
| 1723 | if (functionInfo) |
| 1724 | return (typeToken->isStandardType() || functionInfo->retType || Token::Match(typeToken, "std :: string|wstring")); |
| 1725 | |
| 1726 | return typeToken->isStandardType() || Token::Match(typeToken, "std :: string|wstring"); |
| 1727 | } |
| 1728 | |
| 1729 | bool CheckIOImpl::ArgumentInfo::isLibraryType(const Settings &settings) const |
| 1730 | { |
no test coverage detected