| 153 | } |
| 154 | |
| 155 | Module* Module::load(const std::vector<std::string>& inputs, const std::vector<std::string>& outputs, const char* fileName, const Module::Config* config) { |
| 156 | return load(inputs, outputs, fileName, nullptr, config); |
| 157 | } |
| 158 | |
| 159 | Module* Module::load(const std::vector<std::string>& inputs, const std::vector<std::string>& outputs, const uint8_t* buffer, size_t length, const Module::Config* config) { |
| 160 | return load(inputs, outputs, buffer, length, nullptr, config); |
nothing calls this directly
no test coverage detected