porting/examples: Fix build error on linux

Since 'using namespace std' was removed from public header it is
needed to explicitly use it when using std::list
This commit is contained in:
Szymon Janc
2022-12-13 00:21:58 +01:00
parent 37290c6e09
commit eddc008fa5
+1 -1
View File
@@ -27,7 +27,7 @@
template <typename T> class wqueue
{
list<T> m_queue;
std::list<T> m_queue;
pthread_mutex_t m_mutex;
pthread_mutexattr_t m_mutex_attr;
pthread_cond_t m_condv;