diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-01-29 21:26:36 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-22 23:11:36 -0800 |
commit | d3ab894c879bbd5c5e4fc7ccd61b8c0e78d7dc67 (patch) | |
tree | a67d96e516253b72ec84e549611ec5281c4b5181 /indra | |
parent | 8e61bc80c076d90359e55274684036e437ddb9fa (diff) |
mac build fixes
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoicewebrtc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h index 38d867db8d..6562a737ae 100644 --- a/indra/newview/llvoicewebrtc.h +++ b/indra/newview/llvoicewebrtc.h @@ -747,20 +747,20 @@ class LLVoiceWebRTCConnection : /// @name Signaling notification // LLWebRTCSignalingObserver //@{ - virtual void OnIceGatheringState(IceGatheringState state); - virtual void OnIceCandidate(const llwebrtc::LLWebRTCIceCandidate &candidate); - virtual void OnOfferAvailable(const std::string &sdp); - virtual void OnRenegotiationNeeded() override; - virtual void OnAudioEstablished(llwebrtc::LLWebRTCAudioInterface *audio_interface); - virtual void OnPeerShutDown(); + void OnIceGatheringState(IceGatheringState state) override; + void OnIceCandidate(const llwebrtc::LLWebRTCIceCandidate &candidate) override; + void OnOfferAvailable(const std::string &sdp) override; + void OnRenegotiationNeeded() override; + void OnAudioEstablished(llwebrtc::LLWebRTCAudioInterface *audio_interface) override; + void OnPeerShutDown() override; //@} ///////////////////////// /// @name Data Notification /// LLWebRTCDataObserver //@{ - virtual void OnDataReceived(const std::string &data, bool binary); - virtual void OnDataChannelReady(llwebrtc::LLWebRTCDataInterface *data_interface); + void OnDataReceived(const std::string &data, bool binary) override; + void OnDataChannelReady(llwebrtc::LLWebRTCDataInterface *data_interface) override; //@} void sendData(const std::string &data); |