summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-06-28 10:36:11 +0800
committerErik Kundiman <erik@megapahit.org>2024-06-28 10:36:11 +0800
commit4bf5e2321ec97f3487e4f3f03a1d6905197d6edf (patch)
tree4becd6452529c342ebef3700e9136e103ddf9684 /indra/newview
parent1c8cdd53eeaca735495d52176e415b04c1e886e5 (diff)
Comment out not yet used iceCompleted variable
GCC would treat it as an error.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llvoicewebrtc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp
index d8994b4b77..f3ab52736e 100644
--- a/indra/newview/llvoicewebrtc.cpp
+++ b/indra/newview/llvoicewebrtc.cpp
@@ -2177,7 +2177,7 @@ void LLVoiceWebRTCConnection::processIceUpdatesCoro()
return;
}
- bool iceCompleted = false;
+ //bool iceCompleted = false;
LLSD body;
if (!mIceCandidates.empty() || mIceCompleted)
{
@@ -2216,7 +2216,7 @@ void LLVoiceWebRTCConnection::processIceUpdatesCoro()
LLSD body_candidate;
body_candidate["completed"] = true;
body["candidate"] = body_candidate;
- iceCompleted = mIceCompleted;
+ //iceCompleted = mIceCompleted;
mIceCompleted = false;
}