| 50 | struct LibSsh2Initializer |
| 51 | { |
| 52 | LibSsh2Initializer() |
| 53 | { |
| 54 | const std::lock_guard lock(mutex); |
| 55 | [[maybe_unused]] const auto result = libssh2_init(0); |
| 56 | assert(result == 0); |
| 57 | } |
| 58 | |
| 59 | ~LibSsh2Initializer() |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected