| 324 | virtual ~SocketConnection(); |
| 325 | |
| 326 | SocketConnection(const SocketConnection&) = delete; |
| 327 | SocketConnection& operator=(const SocketConnection&) = delete; |
| 328 | |
| 329 | SocketConnection(SocketConnection&& other) { *this = std::move(other); } |
nothing calls this directly
no outgoing calls
no test coverage detected