summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-01-29 21:26:36 -0800
committerRoxie Linden <roxie@lindenlab.com>2024-02-22 23:11:36 -0800
commitd3ab894c879bbd5c5e4fc7ccd61b8c0e78d7dc67 (patch)
treea67d96e516253b72ec84e549611ec5281c4b5181
parent8e61bc80c076d90359e55274684036e437ddb9fa (diff)
mac build fixes
-rw-r--r--indra/newview/llvoicewebrtc.h16
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);