| 370 | template<typename ReturnPolicy, typename FunctorType, typename ReturnType, typename... Args> |
| 371 | struct FunctorInvoker { |
| 372 | static typename internal::BindingType<ReturnType>::WireType invoke( |
| 373 | FunctorType& function, |
| 374 | typename internal::BindingType<Args>::WireType... args |
| 375 | ) { |
| 376 | return internal::BindingType<ReturnType>::toWireType( |
| 377 | function( |
| 378 | internal::BindingType<Args>::fromWireType(args)...) |
| 379 | , ReturnPolicy{} |
| 380 | ); |
| 381 | } |
| 382 | }; |
| 383 | |
| 384 | template<typename ReturnPolicy, typename FunctorType, typename... Args> |
nothing calls this directly
no test coverage detected