修复gcc4.85无法编译的问题

This commit is contained in:
xiongziliang 2020-01-10 15:29:21 +08:00
parent 8acb6e2093
commit db146406c3
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ private:
//拦截websocket数据接收 //拦截websocket数据接收
_onRecv = [this](const Buffer::Ptr &pBuf){ _onRecv = [this](const Buffer::Ptr &pBuf){
//解析websocket数据包 //解析websocket数据包
WebSocketSplitter::decode((uint8_t*)pBuf->data(),pBuf->size()); this->WebSocketSplitter::decode((uint8_t*)pBuf->data(),pBuf->size());
}; };
return; return;
} }