Revert "switch to snapshot/modelalloc versions of stl classes"
[c11tester.git] / nodestack.h
index 47c0272f95fa917e8710235fa0d56b02194a4d08..8ad329eeaf04f09eb4037c6d9dc6931e8cc1524a 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef __NODESTACK_H__
 #define __NODESTACK_H__
 
-#include "stl_wrappers.h"
+#include <vector>
 #include <cstddef>
 #include <inttypes.h>
 
@@ -163,7 +163,7 @@ private:
        int * yield_data;
 };
 
-typedef model_vector< Node * > node_list_t;
+typedef std::vector< Node *, ModelAlloc< Node * > > node_list_t;
 
 /**
  * @brief A stack of nodes