| 43 | class device_function { |
| 44 | public: |
| 45 | constexpr device_function(const std::string_view function_name_) noexcept : function_name(function_name_) {} |
| 46 | virtual ~device_function() = default; |
| 47 | |
| 48 | struct function_entry { |
nothing calls this directly
no outgoing calls
no test coverage detected