| 1690 | } |
| 1691 | |
| 1692 | std::vector<MathLib::bigint> Library::unknownReturnValues(const Token *ftok) const |
| 1693 | { |
| 1694 | if (isNotLibraryFunction(ftok)) |
| 1695 | return std::vector<MathLib::bigint>(); |
| 1696 | const auto it = utils::as_const(mData->mUnknownReturnValues).find(getFunctionName(ftok)); |
| 1697 | return (it == mData->mUnknownReturnValues.cend()) ? std::vector<MathLib::bigint>() : it->second; |
| 1698 | } |
| 1699 | |
| 1700 | const Library::Function *Library::getFunction(const Token *ftok) const |
| 1701 | { |
no test coverage detected