Skip to content

Commit

Permalink
Trying to fix win build
Browse files Browse the repository at this point in the history
  • Loading branch information
alesapin committed Oct 2, 2024
1 parent 0d9698b commit 5ea9635
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/poco/Net/include/Poco/Net/SocketImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ class Net_API SocketImpl: public Poco::RefCountedObject
/// Throws an appropriate exception for the given error code.

protected:
SocketImpl(const SocketImpl&);
SocketImpl& operator = (const SocketImpl&);
SocketImpl(const SocketImpl&) = default;
SocketImpl& operator = (const SocketImpl&) = default;

poco_socket_t _sockfd;
Poco::Timespan _recvTimeout;
Expand Down

0 comments on commit 5ea9635

Please sign in to comment.