Revert "switch to snapshot/modelalloc versions of stl classes"
[c11tester.git] / workqueue.h
index 3e2481b97eb2080437beb02e22863db25fdbfac3..f08f63c783596968e9dd13a5595fa1f23fcd865f 100644 (file)
@@ -6,7 +6,7 @@
 #ifndef __WORKQUEUE_H__
 #define __WORKQUEUE_H__
 
-#include "stl_wrappers.h"
+#include <list>
 #include "mymemory.h"
 
 class ModelAction;
@@ -102,6 +102,6 @@ class MOEdgeWorkEntry : public WorkQueueEntry {
 };
 
 /** @brief typedef for the work queue type */
-typedef model_list< WorkQueueEntry > work_queue_t;
+typedef std::list< WorkQueueEntry, ModelAlloc<WorkQueueEntry> > work_queue_t;
 
 #endif /* __WORKQUEUE_H__ */