Skip to content
Snippets Groups Projects
Commit 462b1c65 authored by Cosmic Linden's avatar Cosmic Linden
Browse files

SL-16182: Fix Mac compiler errors

parent 30252bce
No related branches found
No related tags found
1 merge request!83Merge Linden 6.6.7
...@@ -533,7 +533,7 @@ void LLVorbisDecodeState::flushBadFile() ...@@ -533,7 +533,7 @@ void LLVorbisDecodeState::flushBadFile()
class LLAudioDecodeMgr::Impl class LLAudioDecodeMgr::Impl
{ {
friend class LLAudioDecodeMgr; friend class LLAudioDecodeMgr;
LLAudioDecodeMgr::Impl(); Impl();
public: public:
void processQueue(); void processQueue();
...@@ -609,7 +609,7 @@ void LLAudioDecodeMgr::Impl::startMoreDecodes() ...@@ -609,7 +609,7 @@ void LLAudioDecodeMgr::Impl::startMoreDecodes()
mDecodes[decode_id] = LLPointer<LLVorbisDecodeState>(NULL); mDecodes[decode_id] = LLPointer<LLVorbisDecodeState>(NULL);
main_queue->postTo( main_queue->postTo(
general_queue, general_queue,
[decode_id, this]() // Work done on general queue [decode_id]() // Work done on general queue
{ {
LLPointer<LLVorbisDecodeState> decode_state = beginDecodingAndWritingAudio(decode_id); LLPointer<LLVorbisDecodeState> decode_state = beginDecodingAndWritingAudio(decode_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment