Cosmetics.

This commit is contained in:
Bartosz Taudul 2018-03-31 01:06:35 +02:00
parent 03830fe83a
commit 347c74cec3
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ int Socket::Recv( void* _buf, int len, const timeval* tv )
}
}
bool Socket::Read( void* _buf, int len, const timeval* tv, std::function< bool() > exitCb )
bool Socket::Read( void* _buf, int len, const timeval* tv, std::function<bool()> exitCb )
{
auto buf = (char*)_buf;

View File

@ -21,7 +21,7 @@ public:
int Send( const void* buf, int len );
int Recv( void* buf, int len, const timeval* tv );
bool Read( void* buf, int len, const timeval* tv, std::function< bool() > exitCb );
bool Read( void* buf, int len, const timeval* tv, std::function<bool()> exitCb );
bool HasData();
Socket( const Socket& ) = delete;