| 70 | } |
| 71 | |
| 72 | struct my_callable { |
| 73 | void operator()(some_tag const&) { |
| 74 | } |
| 75 | |
| 76 | explicit operator bool() { |
| 77 | return true; |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 | struct my_callable_empty { |
| 82 | void operator()(some_tag const&) { |
nothing calls this directly
no outgoing calls
no test coverage detected