Function pointers
| 441 | |
| 442 | // Function pointers |
| 443 | static inline void |
| 444 | manager(const function_buffer& in_buffer, function_buffer& out_buffer, |
| 445 | functor_manager_operation_type op, function_ptr_tag) |
| 446 | { |
| 447 | functor_manager_common<Functor>::manage_ptr(in_buffer,out_buffer,op); |
| 448 | } |
| 449 | |
| 450 | // Function objects that fit in the small-object buffer. |
| 451 | static inline void |
nothing calls this directly
no test coverage detected