MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / ignorefunction

Method ignorefunction

lib/library.cpp:1742–1748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1740}
1741
1742bool Library::ignorefunction(const std::string& functionName) const
1743{
1744 const auto it = utils::as_const(mData->mFunctions).find(functionName);
1745 if (it != mData->mFunctions.cend())
1746 return it->second.ignore;
1747 return false;
1748}
1749const std::unordered_map<std::string, Library::Function>& Library::functions() const
1750{
1751 return mData->mFunctions;

Callers 1

checkclass.cppFile · 0.80

Calls 1

findMethod · 0.45

Tested by

no test coverage detected