| 372 | static std::atomic<std::size_t>& |
| 373 | count() { static std::atomic<std::size_t> n; return n; } |
| 374 | handler() { ++count(); } |
| 375 | ~handler() { --count(); } |
| 376 | handler(handler const&) { ++count(); } |
| 377 | void operator()(error_code const&, std::size_t) const {} |
nothing calls this directly
no outgoing calls
no test coverage detected