去除编译警告

This commit is contained in:
771730766@qq.com 2018-01-30 15:15:24 +08:00 committed by xeonye
parent 4c4aa61da4
commit a69168f8fa
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ private:
int send(const char *pcBuf, int iSize) override {
return m_pSender->send(pcBuf, iSize);
}
int send(const Socket::Buffer::Ptr &pkt){
int send(const Socket::Buffer::Ptr &pkt) override{
return m_pSender->send(pkt,SOCKET_DEFAULE_FLAGS | FLAG_MORE);
}
void shutdown() override;