diff options
Diffstat (limited to 'indra/newview/llvoicewebrtc.cpp')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index ede1542bd1..1d729dcd35 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -24,7 +24,9 @@ * $/LicenseInfo$ */ #include <algorithm> +#if !LL_LINUX #include <format> +#endif #include "llvoicewebrtc.h" #include "llsdutil.h" @@ -2177,7 +2179,7 @@ void LLVoiceWebRTCConnection::processIceUpdatesCoro() return; } - bool iceCompleted = false; + //bool iceCompleted = false; LLSD body; if (!mIceCandidates.empty() || mIceCompleted) { @@ -2216,7 +2218,7 @@ void LLVoiceWebRTCConnection::processIceUpdatesCoro() LLSD body_candidate; body_candidate["completed"] = true; body["candidate"] = body_candidate; - iceCompleted = mIceCompleted; + //iceCompleted = mIceCompleted; mIceCompleted = false; } |