src/queue/lock_free_queue.h
@@ -102,6 +102,7 @@ ~LockFreeQueue(); inline void close(); inline bool isClosed(); // std::atomic_uint reference; /// @brief constructor of the class @@ -197,6 +198,14 @@ closeTime = time(NULL); } template< typename ELEM_T, typename Allocator, template<typename T, typename AT> class Q_TYPE> inline bool LockFreeQueue<ELEM_T, Allocator, Q_TYPE>::isClosed() { return status == LOCK_FREE_Q_ST_CLOSED; } template< typename ELEM_T,