diff options
| author | Cosmic Linden <cosmic@lindenlab.com> | 2022-06-14 13:00:53 -0700 | 
|---|---|---|
| committer | Cosmic Linden <cosmic@lindenlab.com> | 2022-06-14 13:00:53 -0700 | 
| commit | 462b1c6544425c0a37f27da32fbf770e9e7373f9 (patch) | |
| tree | beaa7439ec5a8a0e2de3d1803d01c68707d23c4b /indra/llaudio | |
| parent | 30252bceb068bc1b687b18a85ab5e1b5a98c1184 (diff) | |
SL-16182: Fix Mac compiler errors
Diffstat (limited to 'indra/llaudio')
| -rwxr-xr-x | indra/llaudio/llaudiodecodemgr.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llaudio/llaudiodecodemgr.cpp b/indra/llaudio/llaudiodecodemgr.cpp index 4c4f4d3d0e..bc082bf39a 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); | 
