1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Change public virtual to virtual public

This commit is contained in:
winlin 2018-12-23 19:54:08 +08:00
parent 5d959661e7
commit 6e75993e7f
3 changed files with 6 additions and 6 deletions

View file

@ -92,7 +92,7 @@ public:
/**
* the client provides the main logic control for RTMP clients.
*/
class SrsRtmpConn : public virtual SrsConnection, public virtual ISrsReloadHandler
class SrsRtmpConn : virtual public SrsConnection, virtual public ISrsReloadHandler
{
// for the thread to directly access any field of connection.
friend class SrsPublishRecvThread;