| 1758 | return false; |
| 1759 | } |
| 1760 | bool Library::isLeakIgnore(const std::string& functionName) const |
| 1761 | { |
| 1762 | const auto it = utils::as_const(mData->mFunctions).find(functionName); |
| 1763 | if (it != mData->mFunctions.cend()) |
| 1764 | return it->second.leakignore; |
| 1765 | return false; |
| 1766 | } |
| 1767 | bool Library::isFunctionConst(const std::string& functionName, bool pure) const |
| 1768 | { |
| 1769 | const auto it = utils::as_const(mData->mFunctions).find(functionName); |
no test coverage detected