Skip to content

Commit

Permalink
[apps] Added missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Oct 23, 2020
1 parent e3e3377 commit b1c32d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/srt-tunnel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ class TcpMedium: public Medium
tcp_close(m_socket);
m_socket = -1;
}
virtual void CloseInternal() { return CloseTcp(); }
virtual void CloseInternal() override { return CloseTcp(); }

virtual const char* type() override { return "tcp"; }
virtual int ReadInternal(char* output, int size) override;
Expand Down

0 comments on commit b1c32d0

Please sign in to comment.