| 569 | |
| 570 | // |
| 571 | host_function::host_function(const std::string_view function_name_, const void* function_, host_function_entry&& entry_) : |
| 572 | device_function(function_name_), function(function_), entry(std::move(entry_)) { |
| 573 | entry.info = &entry.host_function_info; |
| 574 | } |
| 575 | |
| 576 | host_function::host_function(const std::string_view function_name_, function_map_type&& functions_) : |
| 577 | device_function(function_name_), functions(std::move(functions_)) { |
nothing calls this directly
no outgoing calls
no test coverage detected