Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make TCPConnection/UDPConnection postblit/dtor scope
While building a project depending on vibe-http, I got the following deprecation message: ``` vibe-core/source/vibe/core/stream.d(189,7): scope variable `source` calling non-scope member function `TCPConnection.~this()` ``` Fixing the issue with the destructor shifts it to the postblit, so both needs to be fixed. The same fix was applied to the UDPConnection as a result.
- Loading branch information