| 694 | (process_attribute<typename std::decay<Args>::type>::precall(call), 0)...}; |
| 695 | } |
| 696 | static void postcall(function_call &call, handle fn_ret) { |
| 697 | PYBIND11_WORKAROUND_INCORRECT_MSVC_C4100(call, fn_ret); |
| 698 | PYBIND11_WORKAROUND_INCORRECT_GCC_UNUSED_BUT_SET_PARAMETER(fn_ret); |
| 699 | using expander = int[]; |
| 700 | (void) expander{ |
| 701 | 0, (process_attribute<typename std::decay<Args>::type>::postcall(call, fn_ret), 0)...}; |
| 702 | } |
| 703 | }; |
| 704 | |
| 705 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected