mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-09-08 18:20:02 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user