Skip to content

Commit

Permalink
Minor fix for uring socket
Browse files Browse the repository at this point in the history
  • Loading branch information
resetius committed Dec 2, 2023
1 parent dce1073 commit ef9bac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coroio/uring.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ class TUring: public TPollerBase {
class TUringSocket: public TSocket
{
public:
TUringSocket(TAddress&& addr, TUring& poller)
: TSocket(addr, poller)
TUringSocket(TAddress addr, TUring& poller)
: TSocket(std::move(addr), poller)
, Uring_(&poller)
{ }

Expand Down

0 comments on commit ef9bac3

Please sign in to comment.