| 22 | namespace fl { |
| 23 | |
| 24 | device_program::~device_program() {} |
| 25 | |
| 26 | std::shared_ptr<device_function> device_program::get_function(const std::string_view& func_name) const { |
| 27 | const auto iter = find(cbegin(function_names), cend(function_names), func_name); |
nothing calls this directly
no outgoing calls
no test coverage detected