NetworkConnection: Don't explicitly declare default move constructor.

This commit is contained in:
Peter Johnson
2015-07-15 23:29:17 -07:00
committed by Peter Johnson
parent 13cbf4e288
commit 555725a05b

View File

@@ -41,8 +41,6 @@ class NetworkConnection {
NetworkConnection(const NetworkConnection&) = delete;
NetworkConnection& operator=(const NetworkConnection&) = delete;
NetworkConnection(NetworkConnection&&) = default;
NetworkConnection& operator=(NetworkConnection&&) = default;
private:
void ReadThreadMain();