| 55 | } |
| 56 | |
| 57 | struct void_function_object |
| 58 | { |
| 59 | void_function_object() = default; |
| 60 | void_function_object(void_function_object&&) = default; |
| 61 | |
| 62 | void operator()() && |
| 63 | { |
| 64 | ++function_count; |
| 65 | } |
| 66 | }; |
| 67 | |
| 68 | void void_handler(int* count) |
| 69 | { |
no outgoing calls
no test coverage detected