| 1843 | } |
| 1844 | |
| 1845 | bool Library::isexecutableblock(const std::string &file, const std::string &token) const |
| 1846 | { |
| 1847 | const auto it = utils::as_const(mData->mExecutableBlocks).find(Path::getFilenameExtensionInLowerCase(file)); |
| 1848 | return (it != mData->mExecutableBlocks.cend() && it->second.isBlock(token)); |
| 1849 | } |
| 1850 | |
| 1851 | int Library::blockstartoffset(const std::string &file) const |
| 1852 | { |
no test coverage detected