| 74 | } |
| 75 | |
| 76 | void FileReader::allowDirectory(boost::filesystem::path _path) |
| 77 | { |
| 78 | solAssert(!_path.empty(), ""); |
| 79 | m_allowedDirectories.insert(std::move(_path)); |
| 80 | } |
| 81 | |
| 82 | void FileReader::addOrUpdateFile(boost::filesystem::path const& _path, SourceCode _source) |
| 83 | { |
no test coverage detected