bugfix - add stl-model.h wrappers, to provide more control over STL
[c11tester.git] / workqueue.h
index f08f63c783596968e9dd13a5595fa1f23fcd865f..a25e4fee60f8718180026278570834ab6781a9a1 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <list>
 #include "mymemory.h"
+#include "stl-model.h"
 
 class ModelAction;
 
@@ -102,6 +103,6 @@ class MOEdgeWorkEntry : public WorkQueueEntry {
 };
 
 /** @brief typedef for the work queue type */
-typedef std::list< WorkQueueEntry, ModelAlloc<WorkQueueEntry> > work_queue_t;
+typedef ModelList<WorkQueueEntry> work_queue_t;
 
 #endif /* __WORKQUEUE_H__ */