More changed for gcc.

- Need to include lltimer.h for ms_sleep
- Fix typo in LLThreadSafeQueue<ElementT>::popBack. visual Studio did not care as method never is instantiated.
master
Nicky 2018-04-05 21:46:23 +02:00
parent 1d79c7c184
commit 310122ff8b
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@
#include "llexception.h"
#include "llmutex.h"
#include "lltimer.h"
#include <string>
#include <deque>
@ -165,7 +166,7 @@ ElementT LLThreadSafeQueue<ElementT>::popBack(void)
{
ElementT value = mStorage.back();
mStorage.pop_back();
return val;
return value;
}
}
ms_sleep( 100 );