From 462b1c6544425c0a37f27da32fbf770e9e7373f9 Mon Sep 17 00:00:00 2001
From: Cosmic Linden <cosmic@lindenlab.com>
Date: Tue, 14 Jun 2022 13:00:53 -0700
Subject: [PATCH] SL-16182: Fix Mac compiler errors

---
 indra/llaudio/llaudiodecodemgr.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/llaudio/llaudiodecodemgr.cpp b/indra/llaudio/llaudiodecodemgr.cpp
index 4c4f4d3d0e5..bc082bf39a2 100755
--- a/indra/llaudio/llaudiodecodemgr.cpp
+++ b/indra/llaudio/llaudiodecodemgr.cpp
@@ -533,7 +533,7 @@ void LLVorbisDecodeState::flushBadFile()
 class LLAudioDecodeMgr::Impl
 {
     friend class LLAudioDecodeMgr;
-    LLAudioDecodeMgr::Impl();
+    Impl();
   public:
 
     void processQueue();
@@ -609,7 +609,7 @@ void LLAudioDecodeMgr::Impl::startMoreDecodes()
         mDecodes[decode_id] = LLPointer<LLVorbisDecodeState>(NULL);
         main_queue->postTo(
             general_queue,
-            [decode_id, this]() // Work done on general queue
+            [decode_id]() // Work done on general queue
             {
                 LLPointer<LLVorbisDecodeState> decode_state = beginDecodingAndWritingAudio(decode_id);
 
-- 
GitLab